Yet Another Pinboard Extension
Browser extension for pinboard (including omnibar search, sidebar and actionbar button popup)
Yet Another Pinboard Extensionとは何ですか?
Yet Another Pinboard Extensionはseeba8によって開発されたChromeの拡張機能で、その主な機能は「Browser extension for pinboard (including omnibar search, sidebar and actionbar button popup)」です。
拡張機能のスクリーンショット
Yet Another Pinboard Extension拡張機能のCRXファイルをダウンロード
Yet Another Pinboard Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Shows your Pinboard bookmarks in the omnibar suggestions if "pin" is prepended. Also, allows you to view, open and edit your bookmarks in your browser. Furthermore, enables (optionally) auto-copying new browser bookmarks to pinboard. Written in pure Javascript/HTML/CSS without external dependencies (But uses Mozilla's Web Extension Polyfill to be able to handle Chrome's differences (mostly, at least). Does not send any data anywhere, as far as I know (except to pinboard, of course). Instructions * To connect the add-on with your pinboard account, enter your API key in the options page (about:addons or chrome://extensions). Do not enter your normal password! The key will be stored in the add-on's local browser storage, and I have no idea if other add-ons / users / whoever can access that. Also, it probably wouldn't even work. * The API key can be found on https://pinboard.in/settings/password. * You can search through your bookmarks, create new ones and edit old ones via the button in the Action Menu (add it to the bar if it is not there) ----- ### Changelog (incomplete) ####v1.5.1 - Fix regression of not being able to search in the address bar anymore (#62) #### v1.5.0 - Added different search modes in the options: - Result must contain the exact search phrase - Result must contain all words of the search phrase, but in any order (this is the new default) - Result must contain at least one of the words in the search phrase (#57) - Result must match the regular expression search - Added an export feature as wished in #55. I was not able to reproduce the reporter's problem though, so I don't see a use case for the export - Export a default bookmark HTML format that can be imported into any browser - Export a JSON document similar to the pinboard export over at [pinboard's backup page](https://pinboard.in/settings/backup) - Optimised some code causing API calls to sometimes be fired twice - Technical changes - Optimised how the different files / modules reference each other - Updated dependencies - Switched from tslint to eslint - Shrank the 16-pixel icon to actually be 16 pixels wide #### v1.4.0 - Added prettier dark mode and option to use browser/system setting for the dark mode, see [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme). - (#51) Adds keybind Alt+Shift+P to open the create bookmark dialog within the popup ([Firefox only](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/browserAction/openPopup)) - (#51) Adds keybind Alt+Shift+Left to open the sidebar (Firefox only) - (#50) Fixes search prefixing and makes search the same across popup, sidebar and browser address bar - (#49) Improves tag suggestions when adding a new bookmark #### v1.3.7 * Merged pull request #48, thanks @marcinsmialek! This adds the keyboard shortcut Alt-P (by default) to open the pinboard popup. Also, it fixes the behaviour when searching for bookmarks in the omnibar when no results are found. * On development side: updated dependencies. Did not replace tslint by eslint yet because it seems to be quite the task... #### v1.3.1 - 1.3.6: * Fixed some bugs * Started adding keyboard controls to the popup * Made the options screen more clear with regards to the API key #### v1.3.0: * Adds customisable colours: Set the addon to dark mode, light mode, or any colour scheme your heart desires * **Firefox only**: Adds a sidebar containing a searchable list of all your bookmarks. * Updates icons in the popup * Backend stuff: * Updated to v1.2.0 of Mozilla's webextension-polyfill * Streamlined some more code * The icons were unicode characters before, now they are embedded SVG * Moved the filter functionality into appropriate class to try and reduce code duplication * Made background scripts not persistent (https://developer.chrome.com/extensions/event_pages)
拡張機能の基本情報
名前 | Yet Another Pinboard Extension |
ID | dbjklnfejfpbamlcgcpmclkhbodmmbko |
公式URL | https://chromewebstore.google.com/detail/yet-another-pinboard-exte/dbjklnfejfpbamlcgcpmclkhbodmmbko |
説明 | Browser extension for pinboard (including omnibar search, sidebar and actionbar button popup) |
ファイルサイズ | 55.36 KB |
インストール数 | 110 |
現在のバージョン | 1.5.1 |
最終更新日 | 2022-11-22 |
公開日 | 2020-05-16 |
評価 | 4.33/5 合計 3 レビュー |
開発者 | seeba8 |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/seeba8/yet-another-pinboard-extension/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Yet Another Pinboard Extension", "description": "Browser extension for pinboard (including omnibar search, sidebar and actionbar button popup)", "homepage_url": "https:\/\/github.com\/seeba8\/yet-another-pinboard-extension", "author": "seeba8", "version": "1.5.1", "background": { "page": "html\/background.html", "persistent": false }, "omnibox": { "keyword": "pin" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+P" }, "description": "Opens the pinboard popup" }, "execute_sidebar_action": { "suggested_key": { "default": "Alt+Shift+S" }, "description": "Opens the pinboard sidebar (Firefox only)" }, "create_bookmark": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Opens the pinboard popup in the bookmark creation dialog (Firefox only)" } }, "icons": { "16": "img\/pinboard-16.png", "32": "img\/pinboard-32.png", "48": "img\/pinboard-48.png", "96": "img\/pinboard-96.png", "128": "img\/pinboard-128.png" }, "permissions": [ "https:\/\/api.pinboard.in\/v1\/*", "storage", "tabs", "bookmarks", "contextMenus", "activeTab", "alarms" ], "options_ui": { "page": "html\/options.html", "chrome_style": true }, "browser_action": { "default_icon": { "16": "img\/pinboard-16.png", "32": "img\/pinboard-32.png", "48": "img\/pinboard-48.png", "96": "img\/pinboard-96.png" }, "default_title": "Yet Another Pinboard Extension", "default_popup": "html\/popup.html", "default_area": "navbar" }, "sidebar_action": { "default_panel": "html\/sidebar.html", "default_icon": "img\/pinboard-96.png" } } |