trello-board

enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…

Apa itu trello-board?

trello-board adalah ekstensi Chrome yang dikembangkan oleh rotagi37, dan fitur utamanya adalah "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".

Unduh Berkas CRX Ekstensi trello-board

Unduh file ekstensi trello-board 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

                        enables to peek trello board from action icon popup 

just setup you current board and list name in the option screen and get easy access to the list from the extension icon                    

Informasi Dasar Ekstensi

Nama trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
URL Resmi https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
Deskripsi enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Ukuran File 65.42 KB
Jumlah Instalasi 42
Versi Saat Ini 1.0.1.6
Terakhir Diperbarui 2017-09-27
Tanggal Publikasi 2017-09-27
Penilaian 5.00/5 Total 1 Penilaian
Pengembang rotagi37
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "trello-board",
    "manifest_version": 2,
    "version": "1.0.1.6",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png"
    },
    "permissions": [
        "history",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "https:\/\/trello.com\/*"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "\/bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon.png",
            "32": "icon.png",
            "48": "icon.png"
        },
        "default_title": "Trello Board",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [],
            "js": [
                "jquery-3.2.1.min.js",
                "cscript.js"
            ],
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}