Pinboard.in 'Save a Bookmark' button
A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.
什么是Pinboard.in 'Save a Bookmark' button?
Pinboard.in 'Save a Bookmark' button是由Boris Terzic开发的Chrome扩展程序,该扩展的主要功能是“A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.”。
扩展截图
下载Pinboard.in 'Save a Bookmark' button扩展crx文件
下载Pinboard.in 'Save a Bookmark' button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A very simple single purpose Pinboard ( http://pinboard.in ) extension: it adds an action button next to your address bar and when you click it the normal Pinboard "Save a Bookmark" page (as used in the bookmarklet) will appear in a popup with the current webpage URL and title pre-filled, as well as any text you may have selected for the description field. You can modify any fields, add tags and when saving the bookmark the popup will disappear automatically. I wrote this small plugin since every other Pinboard extension at the time was trying to do more than just allow creating a new bookmark and I wanted to have as little clicks as possible. Requires access to all pages in order to support the "use current selection as description" feature. Full source code of this extension is available on my Github repository: https://github.com/aggregat4/chrome-extensions/tree/master/pinboard-save-bookmark Changelog: 1.0.6 - Small typo caused a bug that prevented the popup from showing, should be fixed.
扩展基本信息
名称 | Pinboard.in 'Save a Bookmark' button |
ID | geojpngopndpffccbfgekncdgmgchmgh |
官方URL | https://chromewebstore.google.com/detail/pinboardin-save-a-bookmar/geojpngopndpffccbfgekncdgmgchmgh |
简介 | A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection. |
文件大小 | 6.81 KB |
安装次数 | 198 |
当前版本 | 1.0.10 |
更新时间 | 2013-06-28 |
上架时间 | 2013-06-28 |
评分 | 3.38/5 共8次评分 |
开发者 | Boris Terzic |
付费类型 | free |
扩展官网 | https://github.com/aggregat4/chrome-extensions/tree/master/pinboard-save-bookmark |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pinboard.in 'Save a Bookmark' button", "version": "1.0.10", "description": "A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.", "background": { "page": "background.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "icons": { "16": "bluepin16x16.png", "48": "bluepin48x48.png", "128": "bluepin128x128.png" }, "browser_action": { "default_icon": "bluepin16x16.png" } } |