Pesticide for Chrome
This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Qu'est-ce que Pesticide for Chrome ?
Pesticide for Chrome est une extension Chrome développée par londonappbrewery, et sa fonction principale est "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pesticide for Chrome
Téléchargez les fichiers d'extension Pesticide for Chrome au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/
Informations de Base sur l'Extension
Nom | Pesticide for Chrome |
ID | bakpbgckdnepkmkeaiomhmfcnejndkbi |
URL Officiel | 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. |
Taille du Fichier | 24.81 KB |
Nombre d'Installations | 320,694 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2021-11-09 |
Date de Publication | 2021-11-08 |
Évaluation | 4.68/5 Total 62 Évaluations |
Développeur | londonappbrewery |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.udemy.com/course/the-complete-web-development-bootcamp/ |
Langues Prises en Charge | 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" ] } |