Asana Load More

This extension will load all subtasks in Asana. It also lets you hide certain sections.

ما هو Asana Load More؟

Asana Load More هو إضافة Chrome تم تطويرها بواسطة Fat Cattitude, LLC، والميزة الرئيسية لها هي "This extension will load all subtasks in Asana. It also lets you hide certain sections.".

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

screenshot

تحميل ملف CRX للإضافة Asana Load More

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

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

                        This extension will automatically load all subtasks in Asana. It will also allow you to toggle certain subtask sections.                    

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

الاسم Asana Load More Asana Load More
ID gmgelaegjlfeldnmlilkeaegejmlgjhf
عنوان URL الرسمي https://chrome.google.com/webstore/detail/asana-load-more/gmgelaegjlfeldnmlilkeaegejmlgjhf
الوصف This extension will load all subtasks in Asana. It also lets you hide certain sections.
حجم الملف 110 KB
عدد التثبيتات 703
النسخة الحالية 0.0.0.4
آخر تحديث 2019-11-13
تاريخ النشر 2019-11-09
تقييم 4.20/5 مجموع تقييمات 10
المطور Fat Cattitude, LLC
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Asana Load More",
    "description": "This extension will load all subtasks in Asana. It also lets you hide certain sections.",
    "version": "0.0.0.4",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Asana Load More"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.asana.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}