Pesticide for Chrome

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

Vad är Pesticide for Chrome?

Pesticide for Chrome är en Chrome-tillägg utvecklad av londonappbrewery, och dess huvudfunktion är "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".

Tilläggsskärmbilder

screenshot

Ladda ner Pesticide for Chrome-förlängningens CRX-fil

Ladda ner Pesticide for Chrome-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn Pesticide for Chrome Pesticide for Chrome
ID bakpbgckdnepkmkeaiomhmfcnejndkbi
Officiell webbadress https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi
Beskrivning This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Filstorlek 24.81 KB
Antal Installationer 320,694
Aktuell Version 1.1
Senast Uppdaterad 2021-11-09
Publiceringsdatum 2021-11-08
Betyg 4.68/5 Totalt 62 Betyg
Utvecklare londonappbrewery
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.udemy.com/course/the-complete-web-development-bootcamp/
Stödda Språk 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"
    ]
}