Add View Manuals & Custom Web Search extension then click the icon on your toolbar to access Manual Search plus Yahoo Web Search.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"scripts": [
"background.js"
]
},
"name": "View Manuals & Custom Web Search",
"short_name": "View Manuals",
"icons": {
"128": "icons/coloured_icon.png"
},
"description": "Add View Manuals & Custom Web Search extension then click the icon on your toolbar to access Manual Search plus Yahoo Web Search.",
"manifest_version": 2,
"version": "1.8",
"browser_action": {
"browser_style": true,
"default_icon": {
"128": "icons/icon128.png"
},
"default_title": "View Manuals & Custom Web Search"
},
"permissions": [
"*://manualsearch.net/*",
"tabs",
"search"
],
"content_scripts": [
{
"matches": [
"*://manualsearch.net/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
"*.json"
],
"chrome_settings_overrides": {
"search_provider": {
"name": "web search by Yahoo",
"keyword": "View Manuals",
"favicon_url": "icons/icon_1.png",
"search_url": "https://search.yahoo.com/yhs/search?hsimp=yhs-078&hspart=infospace&type=ud-c-us--s-p-sbib6zsu--exp-none--subid-y7ysaw62&p={searchTerms}",
"suggest_url": "https://search.yahoo.com/sugg/ie?output=fxjson&command={searchTerms}&nResults=10",
"is_default": true
}
},
"applications": {
"gecko": {
"id": "viewmanuals_newvers@viewmanuals.com"
}
}
}