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 |
官方URL | 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" ] } |