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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}