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": "Twitter Copy Link",
"version": "1.0.1",
"description": "Quickly copy tweet links with a single click. Adds a copy button next to the share button on every tweet.",
"permissions": [
"clipboardWrite"
],
"host_permissions": [
"https:\/\/twitter.com\/*",
"https:\/\/x.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/x.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}