Pinboard Pro
Google Chrome extension for Pinboard (https://pinboard.in).
Pinboard Pro là gì?
Pinboard Pro là một tiện ích mở rộng Chrome được phát triển bởi https://richardkall.se, và tính năng chính của nó là "Google Chrome extension for Pinboard (https://pinboard.in).".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pinboard Pro
Tải xuống các tệp mở rộng Pinboard Pro dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
FEATURES: - Save bookmarks - Save for reading later - Save tab sets - Quick access to all your bookmarks, unread items or saved tab sets - Open random unread item - Dark mode - Selected text automatically copied to description field - Keyboard shortcuts (customizable) - Fully customizable menu - Does not store login information The "Save bookmark"-dialog uses the official popup which means you have accessto all your tags and tag suggestions.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pinboard Pro |
ID | pmgaobiflaffpllgnepmhcnbdhfgnpna |
URL Chính Thức | https://chromewebstore.google.com/detail/pinboard-pro/pmgaobiflaffpllgnepmhcnbdhfgnpna |
Mô tả | Google Chrome extension for Pinboard (https://pinboard.in). |
Kích Thước Tệp | 17.67 KB |
Số Lần Cài Đặt | 692 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2019-12-23 |
Ngày Phát Hành | 2019-12-23 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://richardkall.se |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://richardkall.se/google-chrome-extension-for-pinboard-in-pinboard-pro/ |
URL Trang Trợ Giúp | https://github.com/richardkall/pinboard-pro-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pinboard Pro", "manifest_version": 2, "description": "Google Chrome extension for Pinboard (https:\/\/pinboard.in).", "author": "Richard K\u00e4ll", "homepage_url": "http:\/\/richardkall.se\/google-chrome-extension-for-pinboard-in-pinboard-pro\/", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "icon-white16.png", "24": "icon-white24.png", "32": "icon-white32.png", "48": "icon-white48.png", "128": "icon-white128.png" }, "default_popup": "popup.html", "default_title": "Pinboard Pro" }, "commands": { "readLater": { "description": "Read later", "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" } }, "saveBookmark": { "description": "Save bookmark", "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" } }, "saveTabSet": { "description": "Save tab set" }, "openAllUnread": { "description": "All unread", "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" } }, "openAllBookmarks": { "description": "All bookmarks", "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" } }, "openAllTabSets": { "description": "All tab sets" }, "openRandomUnread": { "description": "Random unread" } }, "icons": { "16": "icon-black16.png", "24": "icon-black24.png", "32": "icon-black32.png", "48": "icon-black48.png", "128": "icon-black128.png" }, "options_page": "options.html", "permissions": [ "activeTab", "storage", "tabs", "https:\/\/pinboard.in\/tabs\/save\/" ], "version": "2.0.0" } |