Passive Aggressive Email Translator Extension

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

Co je Passive Aggressive Email Translator Extension?

Passive Aggressive Email Translator Extension je rozšíření Chrome vyvinuté dimshik100, a jeho hlavní funkcí je „Chrome extension that identifies and translates passive aggressive email in Gmail client using Gmail.JS and NodeJS-based bundling.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Passive Aggressive Email Translator Extension

Stáhněte si soubory rozšíření Passive Aggressive Email Translator Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Passive Aggressive Email Translator Extension Passive Aggressive Email Translator Extension
ID ilobmjgokpmfhhhlhhdkgckmcajdogok
Oficiální URL https://chromewebstore.google.com/detail/passive-aggressive-email/ilobmjgokpmfhhhlhhdkgckmcajdogok
Popis Chrome extension that identifies and translates passive aggressive email in Gmail client using Gmail.JS and NodeJS-based bundling.
Velikost souboru 143 KB
Počet instalací 47
Aktuální Verze 1.0
Poslední Aktualizace 2018-12-06
Datum Vydání 2018-12-06
Vývojář dimshik100
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/"
    ]
}