Inspect and view changes in YTSkip 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": "YTSkip",
"version": "1.0",
"description": "Force skip all YouTube video ads and block ads",
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": {
"48": "icon.png"
},
"default_title": "YTSkip"
},
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{81506f2c-2c74-44a0-97f6-8e9472bc556c}"
}
}
}