Pinboard Keyboard Shortcut
Bookmark the current page to Pinboard via a keyboard shortcut
Pinboard Keyboard Shortcutคืออะไร?
Pinboard Keyboard Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bertrand Fan และคุณลักษณะหลักของมันคือ "Bookmark the current page to Pinboard via a keyboard shortcut"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pinboard Keyboard Shortcut
ดาวน์โหลดไฟล์ส่วนขยาย Pinboard Keyboard Shortcut ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |