Pesticide for Chrome (without hover bar)

This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.

Что такое Pesticide for Chrome (without hover bar)?

Pesticide for Chrome (without hover bar) - это расширение Chrome, разработанное bradley.flood, и его основная функция - "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Pesticide for Chrome (without hover bar)

Скачайте файлы расширений Pesticide for Chrome (without hover bar) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Forked version of Pesticide which removes the black hover bar overlay.

This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.

Pesticide is an open source CSS tool created by Adam Morse and available for download, forking on Github at https://github.com/mrmrs/pesticide

This forked version is located at: https://github.com/bradleyflood/pesticide-without-hover-bar

You can follow Paul here: https://twitter.com/paulmolluzzo                    

Основная информация о расширении

Название Pesticide for Chrome (without hover bar) Pesticide for Chrome (without hover bar)
ID neonnmencpneifkhlmhmfhfiklgjmloi
Официальный URL https://chromewebstore.google.com/detail/pesticide-for-chrome-with/neonnmencpneifkhlmhmfhfiklgjmloi
Описание This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Размер файла 23.33 KB
Количество установок 95,793
Текущая Версия 1.0.2
Последнее Обновление 2015-11-04
Дата публикации 2015-11-03
Рейтинг 4.05/5 Всего 43 оценок
Разработчик bradley.flood
Тип оплаты free
Официальный сайт расширения https://github.com/bradleyflood/pesticide-without-hover-bar
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pesticide for Chrome (without hover bar)",
    "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.0.2",
    "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"
    ]
}