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/ 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |