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 - это расширение Chrome, разработанное londonappbrewery, и его основная функция - "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".
Снимки экрана расширения
Скачать файл CRX расширения Pesticide for Chrome
Скачайте файлы расширений 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" ] } |