Simple extension to find Shein products by image or by code.
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": "Search Shein by image",
"description": "Simple extension to find Shein products by image or by code.",
"version": "0.9",
"short_name": "Fashion Search",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "status.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"jquery-3.4.0.slim.min.js",
"main.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"contextMenus"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}