forked from dpacassi/view-page-source-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (32 loc) · 782 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
28
29
30
31
32
{
"author": "David Pacassi Torrico",
"manifest_version": 2,
"name": "View Page Source (Mobile)",
"version": "1.0.1",
"description": "Adds the ability to open the page source in a new tab via button (Desktop) or menu (Firefox for Android).",
"homepage_url": "https://github.com/dpacassi/view-page-source-mobile",
"icons": {
"40": "icons/40/app.png",
"48": "icons/48/app.png",
"128": "icons/128/app.png"
},
"browser_action": {
"default_icon": {
"40": "icons/40/app.png",
"48": "icons/48/app.png",
"128": "icons/128/app.png"
},
"default_title": "View Page Source"
},
"background": {
"scripts": [
"app.js"
],
"persistent": true
},
"permissions": [
"<all_urls>",
"activeTab",
"tabs"
]
}