Красивая темная тема
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",
"manifest_version": 2,
"name": "VK Next Dark Theme - тёмная тема для ВК",
"version": "1.0.1",
"default_locale": "ru",
"description": "Красивая темная тема",
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*://*.vk.com/*"
],
"js": [
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"16": "icons/light/icon16.png",
"24": "icons/light/icon24.png",
"32": "icons/light/icon32.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"https://vknext.net/*",
"storage",
"tabs"
]
}