Inspect and view changes in VK_MyMusic 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
{
"manifest_version": 2,
"name": "VK_Music",
"version": "1.0.2",
"permissions": [
"<all_urls>",
"activeTab",
"tabs",
"storage",
"downloads",
"contextMenus",
"webNavigation",
"webRequest"
],
"description": "Поиск ссылок на музыку",
"applications": {
"gecko": {
"id": "macrosinaa@mail.ru",
"strict_min_version": "45.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"32": "find.svg"
},
"content_scripts": [
{
"matches": [
"*://*.vk.com/*"
],
"js": [
"jquery-3.5.1.min.js",
"page-sort.js"
]
}
],
"browser_action": {
"default_icon": {
"32": "find.svg"
}
}
}