Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "0.2.0",
"manifest_version": 3,
"default_locale": "en",
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_extension_name__"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "redirect_shorts",
"enabled": true,
"path": "rules.json"
}
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
]
}