Pesticide for Chrome
This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
What is Pesticide for Chrome?
Pesticide for Chrome is a Chrome extension developed by londonappbrewery, and its main feature is "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".
Extension Screenshots
Download Pesticide for Chrome Extension CRX File
Download Pesticide for Chrome extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | Pesticide for Chrome |
ID | bakpbgckdnepkmkeaiomhmfcnejndkbi |
Official URL | https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi |
Description | This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page. |
File Size | 24.81 KB |
Installation Count | 320,694 |
Current Version | 1.1 |
Last Updated | 2021-11-09 |
Publish Date | 2021-11-08 |
Rating | 4.68/5 Total 62 Ratings |
Developer | londonappbrewery |
[email protected] | |
Payment Type | free |
Extension Website | https://www.udemy.com/course/the-complete-web-development-bootcamp/ |
Supported Languages | 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" ] } |