Pesticide for Chrome

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

Cos'è Pesticide for Chrome?

Pesticide for Chrome è un'estensione di Chrome sviluppata da londonappbrewery, e la sua funzione principale è "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pesticide for Chrome

Scarica i file di estensione Pesticide for Chrome in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Pesticide for Chrome Pesticide for Chrome
ID bakpbgckdnepkmkeaiomhmfcnejndkbi
URL Ufficiale https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi
Descrizione This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Dimensione del File 24.81 KB
Conteggio Installazioni 320,694
Versione Corrente 1.1
Ultimo Aggiornamento 2021-11-09
Data di Pubblicazione 2021-11-08
Valutazione 4.68/5 Totale 62 Valutazioni
Sviluppatore londonappbrewery
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.udemy.com/course/the-complete-web-development-bootcamp/
Lingue Supportate 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"
    ]
}