-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
27 lines (26 loc) · 784 Bytes
/
manifest.json
File metadata and controls
27 lines (26 loc) · 784 Bytes
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
{
"name":"Twitter Restore",
"description":"Restore Twitter's Own Favicon, Logo, String from X.com",
"icons": {
"48": "/source/twitter.ico"
},
"version":"2.0.11",
"manifest_version":3,
"permissions": ["activeTab"],
"content_scripts":[
{
"matches":["https://twitter.com/*", "https://x.com/*", "https://*.x.com/*"],
"js":["href_changer.js"],
"run_at": "document_start",
"all_frames":false,
"_comment": "Twitter.com의 Favicon, TITLE, Logo를 변경함"
},
{
"matches":["https://*/*"],
"exclude_matches":["https://twitter.com/*", "https://x.com/*"],
"js":["bird_nest.js"],
"all_frames": true,
"_comment": "Twitter.com 내의 모든 X 아이콘을 기존 Twitter Icon으로 변경함"
}
]
}