GreenScreen

Converts all scary meat references to friendly happy vegetables.

Что такое GreenScreen?

GreenScreen - это расширение Chrome, разработанное renwick.elise, и его основная функция - "Converts all scary meat references to friendly happy vegetables.".

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

screenshot

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

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

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

                        Ever feel like the internet isn't a very vegan-friendly place? Let's change that.

GreenScreen is a Google Chrome extension that filters out any words and images that are not vegan-friendly and replaces them with plant-based alternatives. This will ensure ease of mind when browsing, and even come up with vegan-friendly recipe substitutions for when you find a recipe that wasn't developed with moral concern in mind.                    

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

Название GreenScreen GreenScreen
ID ckgigmhiodaanddigljglmllggjekoda
Официальный URL https://chromewebstore.google.com/detail/greenscreen/ckgigmhiodaanddigljglmllggjekoda
Описание Converts all scary meat references to friendly happy vegetables.
Размер файла 17.68 KB
Количество установок 140
Текущая Версия 1.0
Последнее Обновление 2020-02-25
Дата публикации 2020-02-25
Рейтинг 3.67/5 Всего 3 оценок
Разработчик renwick.elise
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GreenScreen",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "lettuce32.png"
    },
    "description": "Converts all scary meat references to friendly happy vegetables.",
    "icons": {
        "16": "lettuce16.png",
        "32": "lettuce32.png",
        "128": "lettuce128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/"
    ]
}