forked from afeld/github-find
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
24 lines (24 loc) · 706 Bytes
/
manifest.json
File metadata and controls
24 lines (24 loc) · 706 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
{
"name": "github-find",
"version": "1.0.1",
"manifest_version": 2,
"icons": { "16": "favicon.ico" },
"description": "A plugin for searcing within Github repos.",
"homepage_url": "https://github.com/afeld/github-find",
"background": {
"scripts": ["jquery-1.9.1.min.js", "background.js"],
"persistent": false
},
"page_action": {
"default_icon": "favicon.ico",
"default_title": "Click or press Ctrl+Shift+F to search this repository."
},
"content_scripts": [
{
"matches": ["*://github.com/*/*"],
"exclude_globs": ["*github.com/*/"],
"js": ["jquery-1.9.1.min.js", "jquery.ui.position.min.js", "content-keydown.js"]
}
],
"permissions": ["tabs"]
}