-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (45 loc) · 972 Bytes
/
manifest.json
File metadata and controls
45 lines (45 loc) · 972 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"manifest_version": 3,
"name": "StreetPassRSS",
"description": "A web extension that automatically discovers and records RSS feeds from visited pages, with options to manage and export your feed list.",
"version": "VERSION",
"license": "MIT",
"homepage_url": "https://github.com/LyzardKing/StreetPass-RSS",
"icons": {
"64": "icons/rss.png"
},
"background": {
"scripts": [
"background_script.js"
],
"service_worker": "background_script.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content_script.js"
]
}
],
"permissions": [
"storage"
],
"action": {
"default_icon": {
"64": "icons/rss_bw.png"
},
"default_popup": "browserAction/index.html",
"default_title": "StreetPassRSS"
},
"options_ui": {
"page": "settings/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "@streetpassrss"
}
}
}