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

Unified Diff: chrome/test/data/extensions/api_test/keybinding/page_action/manifest.json

Issue 9693047: Add Extension Keybinding test for page actions. This is to facilitate an upcoming port of the PageA… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/keybinding/page_action/manifest.json
===================================================================
--- chrome/test/data/extensions/api_test/keybinding/page_action/manifest.json (revision 0)
+++ chrome/test/data/extensions/api_test/keybinding/page_action/manifest.json (revision 0)
@@ -0,0 +1,21 @@
+{
+ "name": "A page action that makes the page red",
+ "version": "1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "permissions": [
+ "tabs", "http://*/*", "experimental", "keybinding"
+ ],
+ "page_action": {
+ "default_title": "Make this page red",
+ "default_icon": "icon.png"
+ },
+ "commands": {
+ "pageAction": {
+ "key": "Ctrl+Shift+F",
+ "description": ""
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698