Pinboard Bookmarklet
Google Chrome Extension for Pinboard Bookmarklet with custom shortcut support
Pinboard Bookmarkletคืออะไร?
Pinboard Bookmarklet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sparanoid.com และคุณลักษณะหลักของมันคือ "Google Chrome Extension for Pinboard Bookmarklet with custom shortcut support"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pinboard Bookmarklet
ดาวน์โหลดไฟล์ส่วนขยาย Pinboard Bookmarklet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features: - Simple Pinboard official bookmarklet integrated, provided best compatibility for future Pinboard updates. - Custom keyboard shortcut support This is a fork version of original Google Chrome Extension for Pinboard by yasuyk, with the following changes: - No context menu since I rarely use it. - Better Extension menu appearance. Source code: https://github.com/sparanoid/pinboard-bookmarklet
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Pinboard Bookmarklet |
ID | jhcfbdglkolekommimjcincilfkphphi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pinboard-bookmarklet/jhcfbdglkolekommimjcincilfkphphi |
คำอธิบาย | Google Chrome Extension for Pinboard Bookmarklet with custom shortcut support |
ขนาดไฟล์ | 29.4 KB |
จำนวนการติดตั้ง | 68 |
เวอร์ชันปัจจุบัน | 0.1.2 |
อัปเดตครั้งล่าสุด | 2020-09-01 |
วันที่เผยแพร่ | 2018-09-22 |
ผู้พัฒนา | https://sparanoid.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "0.1.2", "manifest_version": 2, "default_locale": "en", "minimum_chrome_version": "23", "homepage_url": "https:\/\/github.com\/sparanoid\/pinboard-bookmarklet", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "Pinboard", "default_popup": "popup.html", "default_icon": { "19": "img\/pinboard_icon_19.png", "38": "img\/pinboard_icon_38.png" } }, "content_scripts": [ { "js": [ "js\/content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "scripts": [ "js\/pinboard.js", "js\/chrome\/event_listener.js" ], "persistent": false }, "options_page": "options.html", "icons": { "16": "img\/pinboard_icon_16.png", "48": "img\/pinboard_icon_48.png", "128": "img\/pinboard_icon_128.png" }, "commands": { "save_to_pinboard": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "MacCtrl+Shift+S" }, "description": "Save to Pinboard" }, "read_later": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" }, "description": "Read later" }, "unread_bookmarks": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "MacCtrl+Shift+U" }, "description": "Unread bookmarks" }, "all_bookmarks": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "MacCtrl+Shift+A" }, "description": "All bookmarks" } } } |