Pesticide for Chrome

This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.

O que é Pesticide for Chrome?

Pesticide for Chrome é uma extensão do Chrome desenvolvida por londonappbrewery, e sua principal característica é "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Pesticide for Chrome

Baixe arquivos de extensão Pesticide for Chrome 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

                        This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.

This is a forked copy of Pesticide created originally by Adam Morse:
https://github.com/mrmrs/pesticide

This copy of Pesticide is created for students on the Complete Web Development Bootcamp by Dr. Angela Yu.
https://www.udemy.com/course/the-complete-web-development-bootcamp/                    

Informações Básicas da Extensão

Nome Pesticide for Chrome Pesticide for Chrome
ID bakpbgckdnepkmkeaiomhmfcnejndkbi
URL Oficial https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi
Descrição This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Tamanho do Arquivo 24.81 KB
Contagem de Instalações 320,694
Versão Atual 1.1
Última Atualização 2021-11-09
Data de Publicação 2021-11-08
Classificação 4.68/5 Total de 62 Avaliações
Desenvolvedor londonappbrewery
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.udemy.com/course/the-complete-web-development-bootcamp/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pesticide for Chrome",
    "short_name": "Pesticide",
    "description": "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.",
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "pesticide-injector.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Toggle Pesticide",
        "default_icon": {
            "19": "images\/toolbar-chrome.png",
            "38": "images\/[email protected]"
        }
    },
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "web_accessible_resources": [
        "pesticide.min.css",
        "pesticide.js"
    ]
}