Pinboard Search

Search Pinboard in Omnibox

ما هو Pinboard Search؟

Pinboard Search هو إضافة Chrome تم تطويرها بواسطة https://mono0x.net، والميزة الرئيسية لها هي "Search Pinboard in Omnibox".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Pinboard Search

قم بتنزيل ملفات الامتداد Pinboard Search بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}