Tab for Google Tasks

Opens Google Tasks in a new tab. Light and Fast!

ما هو Tab for Google Tasks؟

Tab for Google Tasks هو إضافة Chrome تم تطويرها بواسطة Mostafa Shahverdy، والميزة الرئيسية لها هي "Opens Google Tasks in a new tab. Light and Fast!".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Tab for Google Tasks

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

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

                        This Chrome extension makes it easy to get to your Google Tasks without having to open Gmail. Just click the extension icon in your toolbar and your Tasks will open in a new tab.

With this extension, you can:

 - Stay organized and productive by keeping your Tasks separate from your Gmail.
 - Never miss a Task by having your Tasks open in a new tab that you can easily access.
 - Be more productive by being able to focus on your Tasks without being distracted by your Gmail.                    

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

الاسم Tab for Google Tasks Tab for Google Tasks
ID pcmdjgpplgkpbkneadbpbjljmidomjco
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-for-google-tasks/pcmdjgpplgkpbkneadbpbjljmidomjco
الوصف Opens Google Tasks in a new tab. Light and Fast!
حجم الملف 60.69 KB
عدد التثبيتات 240
النسخة الحالية 0.1
آخر تحديث 2023-03-30
تاريخ النشر 2023-03-30
المطور Mostafa Shahverdy
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/shahverd/tab_for_googletasks
عنوان صفحة المساعدة https://github.com/shahverd/tab_for_googletasks/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1",
    "homepage_url": "https:\/\/github.com\/shahverd\/tab_for_googletasks",
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_description__",
    "author": "Mostafa Shahverdy",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [],
    "host_permissions": [
        "https:\/\/tasks.google.com\/*\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tasks.google.com\/embed\/list\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "128": "tasks128.png"
        }
    },
    "icons": {
        "128": "tasks128.png"
    }
}