Auto Open Add-on

Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.

ما هو Auto Open Add-on؟

Auto Open Add-on هو إضافة Chrome تم تطويرها بواسطة https://darsoft.es، والميزة الرئيسية لها هي "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.".

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

screenshot

تحميل ملف CRX للإضافة Auto Open Add-on

قم بتنزيل ملفات الامتداد Auto Open Add-on بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension automatically opens the Workspace addon you like when the Google service is started in your browser (addon sidebar is shown on page load). It supports addons from Gmail, Google Calendar, Google Drive and Google Docs.                    

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

الاسم Auto Open Add-on Auto Open Add-on
ID bcjnialkobgkdkbdclhdnbdcdgdcgdlo
عنوان URL الرسمي https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo
الوصف Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
حجم الملف 17.4 KB
عدد التثبيتات 783
النسخة الحالية 0.28
آخر تحديث 2021-05-09
تاريخ النشر 2021-04-18
تقييم 5.00/5 مجموع تقييمات 3
المطور https://darsoft.es
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة http://darsoft.es/contact-us/
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Open Add-on",
    "version": "0.28",
    "description": "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/calendar.google.com\/*",
                "https:\/\/drive.google.com\/*",
                "https:\/\/docs.google.com\/*"
            ],
            "js": [
                "autoopenaddon.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_title": "Auto Open Add-on",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/autoopenaddon16.png",
            "32": "images\/autoopenaddon32.png",
            "48": "images\/autoopenaddon48.png",
            "128": "images\/autoopenaddon128.png"
        }
    },
    "icons": {
        "16": "images\/autoopenaddon16.png",
        "32": "images\/autoopenaddon32.png",
        "48": "images\/autoopenaddon48.png",
        "128": "images\/autoopenaddon128.png"
    },
    "manifest_version": 2
}