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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ## 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
공식 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'"
}