-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
35 lines (34 loc) · 925 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
33
34
35
{
"manifest_version": 2,
"name": "Presearch.com Start With Us",
"description": "Set Chrome's Homepage and New Tab page to Presearch.com",
"version": "1.0.3",
"homepage_url": "https://www.presearch.com/?utm_source=extcr",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": "img/icon16.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["*://*.presearch.com/*"],
"css": ["assets/popup-visibility.css"],
"js": ["assets/popup-visibility.js"],
"run_at": "document_start"
}
],
"permissions": [
"*://*.presearch.com/*"
],
"chrome_settings_overrides": {
"homepage": "https://presearch.com/?utm_source=extcr",
"startup_pages": ["https://presearch.com/?utm_source=extcr"]
},
"chrome_url_overrides" : {
"newtab": "newtab.html"
}
}