Inspect and view changes in Ambient YouTube 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": "Ambient YouTube",
"short_name": "ambientyoutube",
"version": "1.2.3",
"default_locale": "en",
"description": "Provides an ambient experience while watching YouTube",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"author": "Polymer Mallard",
"homepage_url": "https://www.polymermallard.com",
"permissions": [
"storage"
],
"web_accessible_resources": [
"shared/image/*",
"shared/image/yt-ambientyoutube-button.svg"
],
"browser_action": {
"default_popup": "panels/popup/index.html"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"https://*.youtube.com/",
"https://*.youtube.com/*",
"https://www.youtube.com/embed/*"
],
"js": [
"shared/script/vendor/color-thief.js",
"shared/script/app/helpers.js",
"shared/script/app/app.js"
],
"css": [
"shared/style/app/youtube.css",
"shared/style/app/plugin.css"
],
"run_at": "document_end"
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}