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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{
"manifest_version": 2,
"name": "Floating cats",
"version": "0.1",
"author": "Uko Kokņevičs",
"description": "Adds floating cats to all websites",
"icons": {
"200": "/marsey3d.webp"
},
"background": {
"scripts": ["/bg.js"],
"service_worker": "/bg.js",
"persistent": false,
"type": "module"
},
"browser_action": {
"default_area": "navbar"
},
"browser_specific_settings": {
"gecko": {
"id": "floating-cats@enes.lv"
},
"gecko_android": {
"id": "floating-cats@enes.lv"
}
},
"content_scripts": [{
"css": ["/floating-cats.css"],
"matches": ["<all_urls>"],
"match_about_blank": true,
"js": ["/floating-cats.js"],
"run_at": "document_end"
}],
"options_ui": {
"browser_style": false,
"open_in_tab": true,
"page": "options/options.html"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"bobvibes.webp",
"marsey3d.webp"
]
}
|