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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rotagi37 และคุณลักษณะหลักของมันคือ "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย trello-board

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
        }
    ]
}