Install the Maps Assist & Custom Web Search extension to get directions by clicking the favicon on the toolbar & enjoy Yahoo® search from your browser.
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": [
"distJs/constants.js",
"distJs/helper.js",
"html/js/storageReplacer.js",
"util.js",
"background.js",
"misc.js"
]
},
"name": "Maps Assist & Custom Web Search",
"short_name": "Maps Assist",
"icons": {
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"*://mapsassist.com/*"
],
"run_at": "document_start",
"all_frames": false,
"js": [
"contentScript.js"
]
}
],
"description": "Add the Maps Assist & Custom Web Search extension & click the icon on the toolbar to access directions and Yahoo® search",
"version": "1.0.0.5",
"manifest_version": 2,
"browser_action": {
"browser_style": true,
"default_icon": {
"128": "icons/icongrey.png"
},
"default_title": "Maps Assist & Custom Web Search"
},
"permissions": [
"*://mapsassist.com/",
"tabs",
"storage"
],
"chrome_settings_overrides": {
"search_provider": {
"name": "web search by Yahoo",
"keyword": "Maps Assist",
"favicon_url": "icons/icongrey.png",
"search_url": "https://search.yahoo.com/yhs/search?hspart=mnet&hsimp=yhs-001&type=type9043493-spa-796-84469¶m1=796¶m2=84469&p={searchTerms}",
"suggest_url": "https://search.yahoo.com/sugg/ie?output=fxjson&command={searchTerms}&nResults=10",
"is_default": true
}
},
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}