Pesticide for Chrome
This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
什麼是Pesticide for Chrome?
Pesticide for Chrome是由londonappbrewery開發的Chrome擴展程式,該擴展的主要功能是“This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.”。
擴展截圖
下載Pesticide for Chrome擴展crx文件
下載Pesticide for Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/
擴展基本資訊
名稱 | Pesticide for Chrome |
ID | bakpbgckdnepkmkeaiomhmfcnejndkbi |
官方網址 | https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi |
簡介 | This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page. |
檔案大小 | 24.81 KB |
安裝次數 | 320,694 |
目前版本 | 1.1 |
更新時間 | 2021-11-09 |
上架時間 | 2021-11-08 |
評分 | 4.68/5 共 62 次評分 |
開發者 | londonappbrewery |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.udemy.com/course/the-complete-web-development-bootcamp/ |
支援的語言 | 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" ] } |