Pesticide for Chrome
This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Apa itu Pesticide for Chrome?
Pesticide for Chrome adalah ekstensi Chrome yang dikembangkan oleh londonappbrewery, dan fitur utamanya adalah "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Pesticide for Chrome
Unduh file ekstensi Pesticide for Chrome dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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/
Informasi Dasar Ekstensi
Nama | Pesticide for Chrome |
ID | bakpbgckdnepkmkeaiomhmfcnejndkbi |
URL Resmi | https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi |
Deskripsi | This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page. |
Ukuran File | 24.81 KB |
Jumlah Instalasi | 320,694 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2021-11-09 |
Tanggal Publikasi | 2021-11-08 |
Penilaian | 4.68/5 Total 62 Penilaian |
Pengembang | londonappbrewery |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.udemy.com/course/the-complete-web-development-bootcamp/ |
Bahasa yang Didukung | 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" ] } |