PotPlayer YouTube Shortcut, Open Links
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"author": "depresjon",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"all_frames": false,
"css": [
"buttons.css"
],
"js": [
"content_script.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": {
"16": "icon_16.png",
"24": "icon_24.png",
"32": "icon_32.png"
},
"default_title": "__MSG_extName__",
"default_popup": "popup.html"
},
"options_page": "options.html",
"default_locale": "en",
"description": "__MSG_extName__",
"icons": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"manifest_version": 3,
"name": "__MSG_extName__",
"permissions": [
"activeTab",
"contextMenus",
"storage",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"autopause.js"
],
"matches": [
"*://*.youtube.com/*"
]
}
],
"short_name": "PP Youtube",
"version": "1.27",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}