Pinboard Keyboard Shortcut
Bookmark the current page to Pinboard via a keyboard shortcut
Pinboard Keyboard Shortcut क्या है?
Pinboard Keyboard Shortcut Bertrand Fan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark the current page to Pinboard via a keyboard shortcut"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pinboard Keyboard Shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allows you to override the default Chrome keyboard shortcut for adding a bookmark to instead bookmark the current page to Pinboard. You may customize the keyboard shortcut by clicking "Keyboard Shortcuts" on the Chrome Extensions page (click the hamburger menu in the top left). https://github.com/bertrandom/pinboard-keyboard-shortcut By default, the keyboard shortcut after installation will be Alt-D. Chrome does not let the extension override the default Bookmark this Page shortcut at installation time. If you'd like to change it to Command-D (or another shortcut), go to: chrome://extensions/shortcuts and set it to Command-D instead of Alt-D. Version History ------------- v1.3 Change the default keyboard shortcut to Alt-D v1.2 Bug fixes v1.1 Added the ability to use the highlighted text as the description thanks to a pull request from Michael Josephson (https://github.com/mikej) v1.0 First release
एक्सटेंशन की मूल जानकारी
नाम | Pinboard Keyboard Shortcut |
ID | cgponlekaepfdikdebmnklhfnjlbieng |
आधिकारिक URL | https://chromewebstore.google.com/detail/pinboard-keyboard-shortcu/cgponlekaepfdikdebmnklhfnjlbieng |
विवरण | Bookmark the current page to Pinboard via a keyboard shortcut |
फ़ाइल का आकार | 16.64 KB |
स्थापना संख्या | 205 |
वर्तमान संस्करण | 1.3 |
अंतिम अपडेट | 2018-06-04 |
प्रकाशन तिथि | 2018-06-03 |
रेटिंग | 4.36/5 कुल 11 रेटिंग्स |
डेवलपर | Bertrand Fan |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pinboard Keyboard Shortcut", "description": "Bookmark the current page to Pinboard via a keyboard shortcut", "version": "1.3", "background": { "scripts": [ "bookmark.js" ], "persistent": true }, "permissions": [ "tabs" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "commands": { "bookmark-on-pinboard": { "suggested_key": { "default": "Alt+D" }, "description": "Bookmark the current page on Pinboard" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ] } |