Add the Ezy Alarm Clock & Custom Web Search extension to set alarms and access a world clock by clicking the favicon on the toolbar and get search results powered by Yahoo®
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": "Ezy Alarm Clock & Custom Web Search",
"short_name": "Ezy Alarm Clock",
"icons": {
"128": "icons/icon.png"
},
"content_scripts": [
{
"matches": [
"*://ezyalarmclock.com/*"
],
"run_at": "document_start",
"all_frames": false,
"js": [
"contentScript.js"
]
}
],
"description": "Create alarms so you never forget important tasks and receive desktop notifications when the alarm goes off. Plus, check international time on a world clock to easily plan travel across time zones or schedule global meetings.",
"version": "1.0.0.10",
"manifest_version": 2,
"browser_action": {
"browser_style": true,
"default_icon": {
"128": "icons/icon_black.png"
},
"default_title": "Ezy Alarm Clock & Custom Web Search"
},
"permissions": [
"storage",
"tabs",
"alarms",
"*://ezyalarmclock.com/*"
],
"chrome_settings_overrides": {
"search_provider": {
"name": "web search by Yahoo",
"keyword": "Ezy Alarm Clock & Custom Web Search",
"favicon_url": "icons/icon.png",
"search_url": "https://search.yahoo.com/yhs/search?hspart=sz&hsimp=yhs-001&type=type7044497-spa-200059-200060¶m1=200059¶m2=200060&p={searchTerms}&grd=1",
"suggest_url": "https://search.yahoo.com/sugg/ie?output=fxjson&command={searchTerms}&nResults=10",
"is_default": true
}
},
"browser_specific_settings": {
"gecko": {
"id": "Ezy_Alarm_Clock___Custom_Web_Search_aGDLGGilLT@ezyalarmclock.com"
}
}
}