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.”。

擴展截圖

screenshot

下載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 ;)                    

擴展基本資訊

名稱 pinboard-fu pinboard-fu
ID ggaonngfgojmeifboajphnhkkhgfefpb
官方網址 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'"
}