New Tab Shortcut
Customize chrome shortcut to open a new tab
Vad är New Tab Shortcut?
New Tab Shortcut är en Chrome-tillägg utvecklad av Stanley Guevara, och dess huvudfunktion är "Customize chrome shortcut to open a new tab".
Ladda ner New Tab Shortcut-förlängningens CRX-fil
Ladda ner New Tab Shortcut-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Simple extension for opening new tab by keyboard shortcut. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
Grundläggande Information om Tillägg
Namn | |
ID | ahnndmdalhingohpcbkfpipelneigkij |
Officiell webbadress | https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij |
Beskrivning | Customize chrome shortcut to open a new tab |
Filstorlek | 3.16 KB |
Antal Installationer | 36 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2016-10-16 |
Publiceringsdatum | 2016-10-16 |
Utvecklare | Stanley Guevara |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/stanleyguevara/chrome-new-tab-shortcut |
Hjälpsida URL | https://github.com/stanleyguevara/chrome-new-tab-shortcut |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to open a new tab", "commands": { "close-tab": { "suggested_key": { "default": "Alt+Z", "mac": "Ctrl+Z" }, "description": "Open a new tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |