-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 918 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 918 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
{
"manifest_version": 2,
"name": "IMS TXN Filter",
"version": "1.0.0",
"description": "Filter types of transactions in IMS!",
"homepage_url": "https://github.com/rynstwrt/IMS-TXN-Filter",
"icons": {
"48": "images/icon.png"
},
"browser_action": {
"default_icon": "images/icon.png",
"default_title": "IMS TXN Filter",
"default_popup": "popup/popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "imstxnfilter@ryanstew.art"
}
},
"content_scripts": [
{
"matches": ["*://internal.softlayer.com/HardwareTransaction/currentTransactionsByDatacenter/*"],
"js": ["js/content.js"],
"run_at": "document_end"
}
],
"background": {
"scripts": ["/js/background.js"],
"persistent": false
},
"permissions": ["activeTab", "storage"]
}