Inspect and view changes in Etsy Analyzer source codes across current and past versions
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": 3,
"name": "Etsy Analyzer",
"version": "1.1.1",
"description": "This extension can help you view information and historical data trends of Etsy stores and their products.",
"author": "ixspy",
"default_locale": "en",
"icons": {
"48": "img/Etsy.png",
"128": "img/Etsy.png"
},
"permissions": [
"storage",
"cookies"
],
"host_permissions": [
"http://ali.same.com/*",
"*://*.ixspy.com/*",
"*://*.etsy.com/*"
],
"action": {
"default_icon": "img/Etsy.png",
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"exclude_matches": [],
"matches": [
"https://*.etsy.com/*",
"https://www.etsy.com/*",
"https://cdn.ixspy.cn/*"
],
"js": [
"js/jquery.js",
"js/echarts.min.js",
"js/content_script_convey.js",
"js/content_script_dom.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"js/jquery.js",
"js/common_func.js",
"js/bootstrap.min.js",
"js/echarts.min.js",
"css/bootstrap.min.css",
"css/plugin.css",
"img/*.png",
"img/*.svg",
"fonts/glyphicons-halflings-regular.ttf",
"fonts/glyphicons-halflings-regular.woff2",
"fonts/glyphicons-halflings-regular.woff",
"js/inject_web.js"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}