-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
32 lines (32 loc) · 848 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
{
"name": "Grammarly with Ghost",
"version": "1.0.2",
"description": "Allow Grammarly to work on Ghost's editor",
"manifest_version": 3,
"action": {
"default_icon": {
"16": "assets/images/icon16.png",
"24": "assets/images/icon24.png",
"32": "assets/images/icon32.png"
},
"default_title": "Grammarly With Ghost",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at": "document_end",
"js": ["assets/js/contentScript.js"]
}
],
"icons": {
"16": "/assets/images/icon16.png",
"32": "/assets/images/icon32.png",
"48": "/assets/images/icon48.png",
"128": "/assets/images/icon128.png"
}
}