GreenScreen

Converts all scary meat references to friendly happy vegetables.

O que é GreenScreen?

GreenScreen é uma extensão do Chrome desenvolvida por renwick.elise, e sua principal característica é "Converts all scary meat references to friendly happy vegetables.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GreenScreen

Baixe arquivos de extensão GreenScreen no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GreenScreen GreenScreen
ID ckgigmhiodaanddigljglmllggjekoda
URL Oficial https://chromewebstore.google.com/detail/greenscreen/ckgigmhiodaanddigljglmllggjekoda
Descrição Converts all scary meat references to friendly happy vegetables.
Tamanho do Arquivo 17.68 KB
Contagem de Instalações 140
Versão Atual 1.0
Última Atualização 2020-02-25
Data de Publicação 2020-02-25
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor renwick.elise
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/"
    ]
}