Pesticide for Chrome
This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Hvad er Pesticide for Chrome?
Pesticide for Chrome er en Chrome-udvidelse udviklet af londonappbrewery, og dens hovedfunktion er "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".
Udvidelsesskærmbilleder
Download Pesticide for Chrome-udvidelses-CRX-fil
Download Pesticide for Chrome-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Pesticide for Chrome |
ID | bakpbgckdnepkmkeaiomhmfcnejndkbi |
Officiel URL | https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi |
Beskrivelse | This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page. |
Filstørrelse | 24.81 KB |
Antal Installationer | 320,694 |
Nuværende Version | 1.1 |
Senest Opdateret | 2021-11-09 |
Udgivelsesdato | 2021-11-08 |
Bedømmelse | 4.68/5 Samlet 62 Bedømmelser |
Udvikler | londonappbrewery |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.udemy.com/course/the-complete-web-development-bootcamp/ |
Understøttede Sprog | 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" ] } |