Inspect and view changes in YouTube Search Redirect 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": "YouTube Search Redirect",
"version": "1.0.1",
"description": "Little script code made into an extension for ease of portability, intercepts the YouTube Search functionality, opening a new tab to make the search query instead of making it in the original tab.",
"permissions": [
"activeTab",
"scripting"
],
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{c1076912-4661-4d09-8fac-d34845015dbc}"
}
}
}