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…

什麼是trello-board?

trello-board是由rotagi37開發的Chrome擴展程式,該擴展的主要功能是“enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…”。

下載trello-board擴展crx文件

下載trello-board擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
官方網址 https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
簡介 enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
檔案大小 65.42 KB
安裝次數 42
目前版本 1.0.1.6
更新時間 2017-09-27
上架時間 2017-09-27
評分 5.00/5 共 1 次評分
開發者 rotagi37
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        }
    ]
}