Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Nov 08, 2025.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.4.9",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"manifest_version": 3,
"default_locale": "en",
"icons": {
"16": "assets\/icons\/icon_16.png",
"32": "assets\/icons\/icon_32.png",
"64": "assets\/icons\/icon_64.png",
"128": "assets\/icons\/icon_128.png"
},
"action": {
"default_title": "__MSG_extName__",
"default_icon": {
"16": "assets\/icons\/icon_16.png",
"32": "assets\/icons\/icon_32.png"
},
"default_popup": "popup.html"
},
"background": {
"service_worker": "js\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js\/allUrl.js"
],
"run_at": "document_end",
"exclude_matches": [
"*:\/\/*.vimeo.com\/*",
"*:\/\/*.dailymotion.com\/*",
"*:\/\/*.vk.com\/*",
"*:\/\/*.instagram.com\/*",
"*:\/\/*.facebook.com\/*",
"*:\/\/*.soundcloud.com\/*",
"*:\/\/*.tiktok.com\/*",
"*:\/\/*.twitter.com\/*",
"*:\/\/*.youtube.com\/*"
]
},
{
"matches": [
"*:\/\/*.dailymotion.com\/*"
],
"js": [
"js\/dailymotion.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.vimeo.com\/*"
],
"js": [
".\/js\/vimeo.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.instagram.com\/*"
],
"js": [
".\/js\/instagram.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"js": [
".\/js\/facebook.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.tiktok.com\/*"
],
"js": [
".\/js\/tiktok.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.twitter.com\/*"
],
"js": [
".\/js\/twitter.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
".\/js\/youtube.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.soundcloud.com\/*"
],
"js": [
".\/js\/soundcloud.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"webRequest",
"tabs",
"downloads"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"js\/**",
"assets\/**"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"<all_urls>"
]
}