Inspect and view changes in Search by Subtitles/CC for 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Search by Subtitles/CC for Youtube™",
"version": "1.1",
"description": "Search for videos on Youtube™ by Subtitles/CC in a specified language.",
"icons": {
"128": "img/CC-icon-128.png"
},
"author": "Kristijan Rosandić",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://*.youtube.com/*"
],
"js": [
"content-script.js"
],
"css": [
"style.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"*.svg"
],
"matches": [
"<all_urls>"
]
}
]
}