Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Price Tracker",
"version": "2.0.0",
"description": "\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u0435 \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0438 \u0446\u0435\u043d \u0442\u043e\u0432\u0430\u0440\u043e\u0432 \u043d\u0430 Ozon, Wildberries \u0438 \u042f\u043d\u0434\u0435\u043a\u0441.\u041c\u0430\u0440\u043a\u0435\u0442. \u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u041f\u0438\u043a\u0430\u0431\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c chguy384272",
"author": "chguy384272",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "Price Tracker"
},
"background": {
"service_worker": "background\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.ozon.ru\/*"
],
"js": [
"content\/content.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.wildberries.ru\/catalog\/*\/detail*"
],
"js": [
"content\/content-wb.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/market.yandex.ru\/*"
],
"js": [
"content\/content-ym.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"alarms",
"activeTab",
"tabs",
"offscreen",
"notifications",
"cookies",
"contextMenus",
"downloads"
],
"host_permissions": [
"https:\/\/www.ozon.ru\/*",
"https:\/\/www.wildberries.ru\/*",
"https:\/\/market.yandex.ru\/*",
"https:\/\/api.telegram.org\/*"
],
"web_accessible_resources": [
{
"resources": [
"sounds\/ding.wav",
"pages\/chart.html",
"libs\/apexcharts.min.js"
],
"matches": [
"<all_urls>"
]
}
]
}