Greentextify

Greentexts the whole internet, so >implying actually works.

Что такое Greentextify?

Greentextify - это расширение Chrome, разработанное https://jasonl.net, и его основная функция - "Greentexts the whole internet, so >implying actually works.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Greentextify

Скачайте файлы расширений Greentextify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Colors everything beginning with a > green so you can greentext anywhere, not just on image boards.

Version History:

1.1.1
* Slight regex tweak

1.1.0
* Should no longer greentext as you type on sites like Google+ and Facebook
* Should no longer greentext spoilered text
* Replaced MutationEvent listeners with a MutationObserver (should have performance boost)
* Better regex matching

1.0.0
* Initial public release                    

Основная информация о расширении

Название Greentextify Greentextify
ID hjcfkfbfobmejkjkiecbndbmjhabofbk
Официальный URL https://chromewebstore.google.com/detail/greentextify/hjcfkfbfobmejkjkiecbndbmjhabofbk
Описание Greentexts the whole internet, so >implying actually works.
Размер файла 5.96 KB
Количество установок 122
Текущая Версия 1.1.1
Последнее Обновление 2019-03-13
Дата публикации 2019-03-13
Рейтинг 4.77/5 Всего 13 оценок
Разработчик https://jasonl.net
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "greentext.css"
            ],
            "js": [
                "greentext.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Greentexts the whole internet, so >implying actually works.",
    "icons": {
        "128": "images\/128.png",
        "16": "images\/icon.png",
        "48": "images\/48.png"
    },
    "manifest_version": 2,
    "name": "Greentextify",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "1.1.1"
}