GoHam - Pig Latin Translator

Automatically translates the Internet to Pig Latin.

GoHam - Pig Latin Translatorとは何ですか?

GoHam - Pig Latin Translatorはsamscodeによって開発されたChromeの拡張機能で、その主な機能は「Automatically translates the Internet to Pig Latin.」です。

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

screenshot

GoHam - Pig Latin Translator拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Compatible with the Teen Titans Go! Pig Latin dialect. Optionally displays pronunciation hints for beginners. Select from several suffix variations.                    

拡張機能の基本情報

名前 GoHam - Pig Latin Translator GoHam - Pig Latin Translator
ID jiimmjfenbblcaobnamplnepkehmeepm
公式URL https://chromewebstore.google.com/detail/goham-pig-latin-translato/jiimmjfenbblcaobnamplnepkehmeepm
説明 Automatically translates the Internet to Pig Latin.
ファイルサイズ 12.41 KB
インストール数 72
現在のバージョン 1.2.1
最終更新日 2019-07-26
公開日 2019-07-23
評価 5.00/5 合計 1 レビュー
開発者 samscode
支払い方法 free
プライバシーポリシーページのURL https://www.google.com/chrome/privacy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GoHam - Pig Latin Translator",
    "short_name": "GoHam",
    "description": "Automatically translates the Internet to Pig Latin.",
    "version": "1.2.1",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo.png"
    },
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "doit.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        "activeTab"
    ]
}