pinboard-fu

Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.

Apa itu pinboard-fu?

pinboard-fu adalah ekstensi Chrome yang dikembangkan oleh banyan, dan fitur utamanya adalah "Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi pinboard-fu

Unduh file ekstensi pinboard-fu dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        ## 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 ;)                    

Informasi Dasar Ekstensi

Nama pinboard-fu pinboard-fu
ID ggaonngfgojmeifboajphnhkkhgfefpb
URL Resmi https://chromewebstore.google.com/detail/pinboard-fu/ggaonngfgojmeifboajphnhkkhgfefpb
Deskripsi Quick access to saving Pinboard bookmarks. Customizable keyboard shortcut. Selected text populates your description field.
Ukuran File 12.81 KB
Jumlah Instalasi 74
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2013-06-29
Tanggal Publikasi 2013-06-29
Penilaian 3.50/5 Total 4 Penilaian
Pengembang banyan
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/banyan/pinboard-fu
URL Halaman Bantuan https://github.com/banyan/pinboard-fu/issues
Bahasa yang Didukung 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'"
}