A filter for Etsy listings.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "View Filter For Etsy",
"version": "1.0.3",
"description": "A filter for Etsy listings.",
"background": {
"page": "background.html"
},
"icons": {
"96": "vffe_icon96.png"
},
"browser_action": {
"default_title": "View Filter For Etsy",
"default_popup": "popup.html"
},
"permissions": [
"*://*.visumex.com/*",
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"*://*.etsy.com/*"
],
"js": [
"browser-polyfill.js",
"common.js",
"contentscript.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"forpopup.html"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}