pinboard-fu
Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.
什么是pinboard-fu?
pinboard-fu是由banyan开发的Chrome扩展程序,该扩展的主要功能是“Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.”。
扩展截图
下载pinboard-fu扩展crx文件
下载pinboard-fu扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
## Changelog
- 2013/06/29 Migrate to manifest2 version. See: https://github.com/banyan/pinboard-fu#010-29-june-2013
## Description
Default shortcut key is Alt + D. you can change as you like.
Codes are open at github: https://github.com/banyan/pinboard-fu
If any problem or request, create issue or pull request are welcome ;) 扩展基本信息
| 名称 | |
| ID | ggaonngfgojmeifboajphnhkkhgfefpb |
| 官方URL | https://chromewebstore.google.com/detail/pinboard-fu/ggaonngfgojmeifboajphnhkkhgfefpb |
| 简介 | Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field. |
| 文件大小 | 12.81 KB |
| 安装次数 | 74 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2013-06-29 |
| 上架时间 | 2013-06-29 |
| 评分 | 3.50/5 共4次评分 |
| 开发者 | banyan |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/banyan/pinboard-fu |
| 帮助页面URL | https://github.com/banyan/pinboard-fu/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "pinboard-fu",
"description": "Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.",
"version": "0.1.0",
"icons": {
"48": "pinboard48.png",
"128": "pinboard128.png"
},
"permissions": [
"tabs",
"http:\/\/*\/",
"https:\/\/*\/"
],
"browser_action": {
"default_title": "Post to Pinboard",
"default_icon": "pinboard.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"js\/addPinboard.js",
"js\/getSelection.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"options_page": "options_shortcut.html",
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
} | |