Inspect and view changes in easyBlock: Hide Items, Sellers, and More! 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": "easyBlock: Hide Items, Sellers, and More!",
"version": "1.0.0",
"description": "Hide items, sellers, and sponsored posts that you don't like from appearing in search and category results on your favorite shopping sites.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"page_action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup/popup-loading.html"
},
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup/popup-loading.html"
},
"content_scripts": [
{
"js": [
"resources/jquery-3.4.1.min.js",
"content.bundle.js"
],
"css": [
"popup/css/content.css"
],
"matches": [
"*://*/*"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.bundle.js"
],
"service_worker": "background.bundle.js"
},
"web_accessible_resources": [
{
"resources": [
"icon128.png",
"icon16.png",
"icon48.png",
"popup/*"
],
"matches": [
"*://*/*"
]
}
],
"permissions": [
"storage",
"unlimitedStorage",
"tabs",
"declarativeContent",
"activeTab",
"webRequest",
"webRequestBlocking",
"scripting",
"page_action"
],
"host_permissions": [
"https://*.ebay.com/*",
"https://*.ebay.com.au/*",
"https://*.ebay.at/*",
"https://*.ebay.be/*",
"https://*.ebay.ca/*",
"https://*.ebay.fr/*",
"https://*.ebay.de/*",
"https://*.ebay.com.hk/*",
"https://*.ebay.ie/*",
"https://*.ebay.it/*",
"https://*.ebay.com.my/*",
"https://*.ebay.nl/*",
"https://*.ebay.ph/*",
"https://*.ebay.pl/*",
"https://*.ebay.com.sg/*",
"https://*.ebay.es/*",
"https://*.ebay.ch/*",
"https://*.ebay.co.uk/*",
"https://*.amazon.com/*"
],
"browser_specific_settings": {
"gecko": {
"id": "{78328bdc-5edb-480c-8ea8-0160a565c372}",
"strict_min_version": "109.0"
}
}
}