Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"short_name": "SupplierFinder",
"name": "Supplier Image Search by SimplyTrends.co",
"description": "Reverse image search on all popular dropshipping supplier platforms.",
"version": "0.0.0.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"action": [],
"permissions": [
"contextMenus",
"scripting",
"storage",
"declarativeNetRequest",
"management"
],
"host_permissions": [
"*:\/\/*\/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "rule_1",
"enabled": true,
"path": "rules.json"
}
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"contentscript.js"
]
},
{
"matches": [
"https:\/\/*.simplytrends.co\/crx\/*"
],
"run_at": "document_start",
"all_frames": true,
"js": [
"simplytrends.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"simplytrends.js",
"entry.js",
"windowscript.js",
"contentscript.js",
"images\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}