Passive Aggressive Email Translator Extension

Chrome extension that identifies and translates passive aggressive email in Gmail client using Gmail.JS and NodeJS-based bundling.

ما هو Passive Aggressive Email Translator Extension؟

Passive Aggressive Email Translator Extension هو إضافة Chrome تم تطويرها بواسطة dimshik100، والميزة الرئيسية لها هي "Chrome extension that identifies and translates passive aggressive email in Gmail client using Gmail.JS and NodeJS-based bundling.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Passive Aggressive Email Translator Extension

قم بتنزيل ملفات الامتداد Passive Aggressive Email Translator Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Chrome extension that identifies and translates passive aggressive phrases in emails.
Currently works only with Gmail client.                    

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

الاسم Passive Aggressive Email Translator Extension Passive Aggressive Email Translator Extension
ID ilobmjgokpmfhhhlhhdkgckmcajdogok
عنوان URL الرسمي https://chromewebstore.google.com/detail/passive-aggressive-email/ilobmjgokpmfhhhlhhdkgckmcajdogok
الوصف Chrome extension that identifies and translates passive aggressive email in Gmail client using Gmail.JS and NodeJS-based bundling.
حجم الملف 143 KB
عدد التثبيتات 47
النسخة الحالية 1.0
آخر تحديث 2018-12-06
تاريخ النشر 2018-12-06
المطور dimshik100
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Passive Aggressive Email Translator Extension",
    "short_name": "passiveAggressiveEmailTranslator",
    "version": "1.0",
    "author": "Dima Vishnevetsky ",
    "description": "Chrome extension that identifies and translates passive aggressive email in Gmail client using Gmail.JS and NodeJS-based bundling.",
    "page_action": {
        "default_icon": {
            "16": "icons\/icon_extension_toolbar_16.png",
            "32": "icons\/icon_extension_toolbar_32.png"
        },
        "default_title": "Passive Aggressive Email Translator",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon_extension_toolbar_16.png",
        "32": "icons\/icon_windows_computers_32.png",
        "48": "icons\/icon_extensions_management_page_48.png",
        "128": "icons\/icon_web_store_icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "extensionInjector.js"
            ],
            "css": [
                "style-injector.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "extension.js"
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/mail.google.com\/"
    ]
}