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の拡張機能で、その主な機能は「Chrome extension that identifies and translates passive aggressive email in Gmail client using Gmail.JS and NodeJS-based bundling.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Passive Aggressive Email Translator Extension拡張機能のCRXファイルをダウンロード

Passive Aggressive Email Translator Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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\/"
    ]
}