Inspect and view changes in Подаркус 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
{
"name": "Подаркус",
"description": "Подаркус — сервис вишлистов | Дари и получай только желанные подарки.",
"version": "1.0",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"*://*/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"tabs",
"activeTab"
],
"browser_action": {
"default_title": "Подаркус | Добавить подарок",
"default_icon": {
"16": "/static/images/icons/icon_16_disabled.png",
"32": "/static/images/icons/icon_32_disabled.png",
"48": "/static/images/icons/icon_48_disabled.png",
"128": "/static/images/icons/icon_128_disabled.png"
}
},
"icons": {
"16": "/static/images/icons/icon_16.png",
"32": "/static/images/icons/icon_32.png",
"48": "/static/images/icons/icon_48.png",
"128": "/static/images/icons/icon_128.png"
}
}