Pinboard Search

Search Pinboard in Omnibox

Pinboard Search란 무엇입니까?

Pinboard Search은(는) https://mono0x.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search Pinboard in Omnibox"입니다.

확장 프로그램 스크린샷

screenshot

Pinboard Search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Pinboard Search provides incremental search for Pinboard. In the Omnibox, type 'p', hit space and then you can search your bookmarks.

https://github.com/mono0x/pinboard-search

version 0.4.0
- Add support for search expressions. 'a OR b', 'title:word', 'tag:word', 'comment:word', and '-word' are now supported.

version 0.3.0
- Use Migemo Server (https://chrome.google.com/webstore/detail/migemo-server-for-google/dfccgbheolnlopfmahkcjiefggclmadb) instead of ChromeMigemo.

version 0.2.0
- Add support for ChromeMigemo (https://chrome.google.com/webstore/detail/chromemigemo/pocnedlaincikkkcmlpcbipcflgjnjlj).

version 0.1.0
- Add support for API token.                    

확장 프로그램 기본 정보

이름 Pinboard Search Pinboard Search
ID ipooeblefgjhpfcmpjgccamencpbjodd
공식 URL https://chromewebstore.google.com/detail/pinboard-search/ipooeblefgjhpfcmpjgccamencpbjodd
설명 Search Pinboard in Omnibox
파일 크기 64.59 KB
설치 횟수 208
현재 버전 0.4.0
최근 업데이트 2015-12-31
출시 날짜 2015-12-30
평점 4.32/5 총 25 개의 평점
개발자 https://mono0x.net
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pinboard Search",
    "version": "0.4.0",
    "description": "Search Pinboard in Omnibox",
    "background": {
        "scripts": [
            "lib\/jquery.min.js",
            "lib\/utils.js",
            "lib\/pinboard.js",
            "lib\/migemo.js",
            "lib\/search.js",
            "lib\/parser.js",
            "lib\/omnibox.js"
        ]
    },
    "sandbox": {
        "pages": [
            "sandbox.html"
        ],
        "content_security_policy": "sandbox allow-scripts; script-src 'unsafe-eval'"
    },
    "options_page": "options.html",
    "omnibox": {
        "keyword": "p"
    },
    "permissions": [
        "storage",
        "alarms",
        "unlimitedStorage",
        "https:\/\/api.pinboard.in\/v1\/posts\/update",
        "https:\/\/api.pinboard.in\/v1\/posts\/all"
    ]
}