Inspect and view changes in YT Link-Player 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
{
"name": "YT Link-Player",
"short_name": "YTLinkPlayer",
"description": "Open YouTube hyperlinks as embedded videos.",
"homepage_url": "https://github.com/adeoladev/youtube-linkplayer",
"version": "1.2.7",
"manifest_version": 3,
"permissions": [
"contextMenus"
],
"icons": {
"48": "images/icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"style.css"
],
"js": [
"script.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images/toggle.png"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}