GoHam - Pig Latin Translator

Automatically translates the Internet to Pig Latin.

Что такое GoHam - Pig Latin Translator?

GoHam - Pig Latin Translator - это расширение Chrome, разработанное samscode, и его основная функция - "Automatically translates the Internet to Pig Latin.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения GoHam - Pig Latin Translator

Скачайте файлы расширений 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"
    ]
}