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",
"manifest_version": 3,
"name": "SSVID Helper",
"version": "1.0.0",
"description": "Quickly send the current page or video link to SSVID for further actions. A simple helper tool to open SSVID.net with one click.",
"action": {
"default_title": "Open with SSVID"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"activeTab",
"tabs",
"storage",
"scripting",
"clipboardWrite",
"contextMenus"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*",
"https:\/\/youtu.be\/*",
"https:\/\/www.tiktok.com\/*",
"https:\/\/www.facebook.com\/*",
"https:\/\/fb.watch\/*",
"https:\/\/www.instagram.com\/*"
],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"utils.js",
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
]
}