-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
27 lines (27 loc) · 873 Bytes
/
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
{
"name": "uhhhhh",
"version": "1.0",
"description": "oop idk",
"permissions": ["tabs","activeTab","declarativeContent", "storage", "tabCapture"],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"page_action": {
"default_popup": "popup.html", // need to make small ui... probably just box, text + button
// we could make like an on/off button on popup
// smart but we have to switch to browser action instead of page action i think which should
// be fine except google removed the documentation on that lol
// bruh
"default_icon": {
"icon" : "icon.png" // icon that appears next to address bar
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": [""],
"js": [""]
}],
"manifest_version": 2
}