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": "copy-youtube-link",
"version": "1.6",
"description": "Copy and bookmark YouTube URL with the timestamp via Cmd+C and s\/d keys",
"icons": {
"16": "y-16.png",
"32": "y-32.png",
"128": "y-128.png"
},
"action": {
"default_title": "copy-youtube-link",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"clipboardWrite",
"scripting",
"activeTab"
]
}