Inspect and view changes in global-playlist 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "global-playlist",
"version": "0.0.5",
"description": "A Playlist for the Web",
"options_page": "src/pages/options/index.html",
"background": {
"service_worker": "src/pages/background/index.js",
"type": "module"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": "icon-34.png"
},
"permissions": [
"storage",
"tabs",
"contextMenus"
],
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"src/pages/content/index.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets/js/*.js",
"assets/css/*.css",
"icon-128.png",
"icon-34.png"
],
"matches": [
"*://*/*"
]
}
]
}