25 Super Reply

Reply to any email in 1 click

ما هو 25 Super Reply؟

25 Super Reply هو إضافة Chrome تم تطويرها بواسطة 25 Superstars، والميزة الرئيسية لها هي "Reply to any email in 1 click".

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

screenshot

تحميل ملف CRX للإضافة 25 Super Reply

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

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

                        Reply to any email in 1 click.                    

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

الاسم 25 Super Reply 25 Super Reply
ID bffpbnbaijcbgacpipbpkdcknifodecm
عنوان URL الرسمي https://chromewebstore.google.com/detail/25-super-reply/bffpbnbaijcbgacpipbpkdcknifodecm
الوصف Reply to any email in 1 click
حجم الملف 528 KB
عدد التثبيتات 84
النسخة الحالية 0.1.1
آخر تحديث 2023-02-14
تاريخ النشر 2023-02-13
المطور 25 Superstars
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "25 Super Reply",
    "version": "0.1.1",
    "description": "Reply to any email in 1 click",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Mail.ai",
        "default_popup": "popup.html"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "extension.css"
            ]
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentInbox.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "gmailJsLoader.js",
                "extension.js",
                "gmailJsLoader.js.map",
                "extension.js.map"
            ],
            "matches": [
                ""
            ]
        }
    ]
}