Pesticide for Chrome
This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Was ist Pesticide for Chrome?
Pesticide for Chrome ist eine Chrome-Erweiterung, die von londonappbrewery entwickelt wurde, und ihr Hauptmerkmal ist "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".
Erweiterungsscreenshots
Pesticide for Chrome-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pesticide for Chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/
Grundlegende Informationen zur Erweiterung
Name | Pesticide for Chrome |
ID | bakpbgckdnepkmkeaiomhmfcnejndkbi |
Offizielle URL | https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi |
Beschreibung | This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page. |
Dateigröße | 24.81 KB |
Installationsanzahl | 320,694 |
Aktuelle Version | 1.1 |
Letztes Update | 2021-11-09 |
Veröffentlichungsdatum | 2021-11-08 |
Bewertung | 4.68/5 Insgesamt 62 Bewertungen |
Entwickler | londonappbrewery |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.udemy.com/course/the-complete-web-development-bootcamp/ |
Unterstützte Sprachen | 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" ] } |