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 |
| Eメール | [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'"
} | |