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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/"
    ]
}