Inspect and view changes in Autoplay off 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": "Autoplay off",
"version": "1.0.0",
"description": "Sets YouTube's autoplay button to OFF always.",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*"
],
"js": [
"content_ytautoplay.js"
],
"run_at": "document_start"
}
],
"browser_specific_settings.gecko.id": "510443C3-8FE9-4DCC-AA49-65CE5C36976A",
"browser_specific_settings": {
"gecko": {
"id": "{621a20bf-5a62-4884-87e8-5e0721f1d8b2}"
}
}
}