-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
40 lines (38 loc) · 1.01 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"manifest_version": 3,
"name": "xify",
"version": "2.1.3",
"description": "A chrome extension that modifies twitter/x.com links to vxtwitter/fxtwitter on Copy/shortcut Ctrl+Shift+K and copies to clipboard.",
"permissions": ["clipboardWrite", "activeTab", "storage"],
"content_scripts": [
{
"matches": ["*://twitter.com/*","*://x.com/*"],
"js": ["src/copy.js"]
}
],
"action":{
"default_popup":"src/popup.html"
},
"commands":{
"modify-link": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
},
"description": "Copy to clipboard"
}
},
"background": {
"service_worker": "src/background.js"
},
"externally_connectable":{
"ids":["*"],
"matches":["*://twitter.com/*","*://x.com/*"]
},
"icons":{
"16":"assets/icon16.png",
"32":"assets/icon32.png",
"48":"assets/icon48.png",
"128":"assets/icon128.png"
}
}