-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (31 loc) · 824 Bytes
/
manifest.json
File metadata and controls
38 lines (31 loc) · 824 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
{
"manifest_version": 2,
"name": "Github Filter Extension",
"version": "0.4.1",
"author": "CoderK <jeokrang@gmail.com>",
"description": "This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.",
"icons": { "128": "./resources/img/filter_off_128.png" },
"permissions": [
"activeTab",
"tabs"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./dist/app.min.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": ["./dist/background.min.js"]
},
"browser_action": {
"default_title": "Github Filter Extention",
"default_icon": "./resources/img/filter_off_128.png"
},
"homepage_url": "https://github.com/CoderK/github-filter-extension"
}