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 dimshik100 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that identifies and translates passive aggressive email in Gmail client using Gmail.JS and NodeJS-based bundling."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Passive Aggressive Email Translator Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/"
    ]
}