Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: chrome/common/extensions/docs/examples/api/eventPage/basic/manifest.json

Issue 11818010: Make chrome.alarms API accept non-integers and too-short delays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: After discussion, switch to 1-minute minimum alarm time Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "Event Page Example", 2 "name": "Event Page Example",
3 "description": "Demonstrates usage and features of the event page", 3 "description": "Demonstrates usage and features of the event page",
4 "version": "1.0", 4 "version": "1.0",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "permissions": ["alarms", "tabs", "bookmarks", "experimental", "keybinding", " http://*.google.com/*"], 6 "permissions": ["alarms", "tabs", "bookmarks", "declarativeWebRequest", "*://* .google.com/*"],
7 "background": { 7 "background": {
8 "scripts": ["background.js"], 8 "scripts": ["background.js"],
9 "persistent": false 9 "persistent": false
10 }, 10 },
11 "browser_action": { 11 "browser_action": {
12 "default_icon" : "icon.png", 12 "default_icon" : "icon.png",
13 "default_title": "Start Event Page" 13 "default_title": "Start Event Page"
14 }, 14 },
15 "commands": { 15 "commands": {
16 "open-google": { 16 "open-google": {
17 "description": "Open a tab to google.com", 17 "description": "Open a tab to google.com",
18 "suggested_key": { "default": "Ctrl+Shift+L" } 18 "suggested_key": { "default": "Ctrl+Shift+L" }
19 }, 19 },
20 "_execute_browser_action": { 20 "_execute_browser_action": {
21 "suggested_key": { "default": "Ctrl+Shift+K" } 21 "suggested_key": { "default": "Ctrl+Shift+K" }
22 } 22 }
23 } 23 }
24 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698