Inspect and view changes in Youtube Loop Assistant 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
{
"version": "5.18.0",
"content_scripts": [
{
"js": [
"script.js"
],
"css": [
"inject_style.css"
],
"matches": [
"*://*.youtube.com/*",
"*://youtube.com/*"
],
"run_at": "document_start"
}
],
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self'; img-src data: chrome-extension: http://*.gstatic.com https://*.gstatic.com https://*.facebook.com https://*.twitter.com; style-src 'self' 'unsafe-inline'; frame-src https://*.google.com https://*.facebook.com https://facebook.com http://*.facebook.com http://*.twitter.com https://*.twitter.com; object-src 'self'; connect-src https://*.twitter.com"
},
"web_accessible_resources": [
{
"resources": [
"_locales/*",
"options.html",
"contentscript.js"
],
"matches": [
"*://*.youtube.com/*",
"*://youtube.com/*"
]
}
],
"default_locale": "en",
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}