Trello custom progress bar

Customize you Trello progress bar

ما هو Trello custom progress bar؟

Trello custom progress bar هو إضافة Chrome تم تطويرها بواسطة topaztee، والميزة الرئيسية لها هي "Customize you Trello progress bar".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Trello custom progress bar

قم بتنزيل ملفات الامتداد Trello custom progress bar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Change the boring blue progress bar to something else.
To change the progress bar, right click the extension icon, and choose options.                    

معلومات أساسية عن التمديد

الاسم Trello custom progress bar Trello custom progress bar
ID afbaaokfpieehjeffeceajdopnlempob
عنوان URL الرسمي https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob
الوصف Customize you Trello progress bar
حجم الملف 50.44 KB
عدد التثبيتات 46
النسخة الحالية 1.2
آخر تحديث 2019-04-29
تاريخ النشر 2019-04-29
تقييم 2.33/5 مجموع تقييمات 3
المطور topaztee
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello custom progress bar",
    "short_name": "Trello custom progress bar",
    "description": "Customize you Trello progress bar",
    "version": "1.2",
    "permissions": [
        "tabs",
        "storage",
        "webNavigation"
    ],
    "browser_action": {
        "default_title": "blahblah",
        "default_icon": {
            "32": "32.png"
        }
    },
    "background": {
        "matches": [
            "*:\/\/trello.com\/c\/*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ],
    "options_page": "options.html"
}