Pesticide for Chrome

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

¿Qué es Pesticide for Chrome?

Pesticide for Chrome es una extensión de Chrome desarrollada por londonappbrewery, y su función principal es "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Pesticide for Chrome

Descarga archivos de extensión Pesticide for Chrome en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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/                    

Información Básica de la Extensión

Nombre Pesticide for Chrome Pesticide for Chrome
ID bakpbgckdnepkmkeaiomhmfcnejndkbi
URL Oficial https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi
Descripción This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Tamaño del Archivo 24.81 KB
Cantidad de Instalaciones 320,694
Versión Actual 1.1
Última Actualización 2021-11-09
Fecha de Publicación 2021-11-08
Calificación 4.68/5 Total de 62 Calificaciones
Desarrollador londonappbrewery
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.udemy.com/course/the-complete-web-development-bootcamp/
Idiomas Soportados 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"
    ]
}