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
| export default {
| name: 'jp163',
| icons: {
| "16": "icons/16.png",
| "48": "icons/48.png"
| },
| permissions: [
| 'declarativeNetRequest',
| "tabs",
| "sidePanel",
| "commands",
| "scripting",
| 'storage',
| 'alarms',
| ],
| host_permissions: ["<all_urls>"],
| action: {
| default_title: "打开"
| },
| side_panel: {
| "default_title": "",
| "default_icon": {"16": "icons/16.png", "48": "icons/48.png"},
| "openPanelOnActionClick": true
| },
| // declarative_net_request: {
| // rule_resources: [
| // {
| // id: "force-cache-override",
| // enabled: true,
| // path: "rules.json"
| // }
| // ]
| // }
| }
|
|