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

Unified Diff: chrome/common/extensions/docs/examples/howto/tab_shortcuts/manifest.json

Issue 12481004: Created a sample extension that shows off event pages, new tab apis, and keyboard shortcuts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nit Created 7 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
« no previous file with comments | « AUTHORS ('k') | chrome/common/extensions/docs/examples/howto/tab_shortcuts/tab_shortcuts.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/examples/howto/tab_shortcuts/manifest.json
diff --git a/chrome/common/extensions/docs/examples/howto/tab_shortcuts/manifest.json b/chrome/common/extensions/docs/examples/howto/tab_shortcuts/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..198ac7a54f7ca388f06dcd4a41bef64782623b2c
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/howto/tab_shortcuts/manifest.json
@@ -0,0 +1,26 @@
+{
+ "name": "Tab Shortcuts",
+ "version": "1.0",
+ "description": "Allows pinning and duplication of tabs via keyboard shortcuts.",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["tab_shortcuts.js"],
+ "persistent": false
+ },
+ "commands": {
+ "toggle-pin-tab": {
+ "suggested_key": {
+ "default": "Ctrl+Shift+X",
+ "mac": "Command+Shift+X"
+ },
+ "description": "Toggles whether the current tab is pinned."
+ },
+ "duplicate-tab": {
+ "suggested_key": {
+ "default": "Ctrl+Shift+Z",
+ "mac": "Command+Shift+Z"
+ },
+ "description": "Duplicates the current tab."
+ }
+ }
+}
« no previous file with comments | « AUTHORS ('k') | chrome/common/extensions/docs/examples/howto/tab_shortcuts/tab_shortcuts.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698