Поиск выгодных товаров среди сотен товаров
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "МегаМаркет",
"version": "2.2.0",
"manifest_version": 3,
"description": "Поиск выгодных товаров среди сотен товаров",
"icons": {
"32": "./megamarket_32.png"
},
"background": {
"service_worker": "./background.js"
},
"permissions": [
"tabs"
],
"host_permissions": [
"https://megamarket.ru/*"
],
"web_accessible_resources": [
{
"resources": [
"style.css"
],
"matches": [
"https://megamarket.ru/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://megamarket.ru/*"
],
"run_at": "document_idle",
"all_frames": false,
"js": [
"./bundle.js"
]
}
]
}