WhatColor

The easiest way to identify colors on web pages.

Что такое WhatColor?

WhatColor - это расширение Chrome, разработанное https://milhen.ch, и его основная функция - "The easiest way to identify colors on web pages.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения WhatColor

Скачайте файлы расширений WhatColor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This chrome extension has been written to demonstrate how to execute code within the current page after a chrome extension button is pressed, as discussed in my article;

https://medium.com/p/f951315854e9

The basic premise is to parse all css stylesheet files that are linked to the current page and add a sidebar that lists all of the colors referenced within the stylesheets.

# Caveats
* For demo purposes only (supporting the atricle).
* Inline colors are not displayed.                    

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

Название WhatColor WhatColor
ID begomjapoppkfcdcaindehabfglbfkcn
Официальный URL https://chromewebstore.google.com/detail/whatcolor/begomjapoppkfcdcaindehabfglbfkcn
Описание The easiest way to identify colors on web pages.
Размер файла 32.14 KB
Количество установок 1,380
Текущая Версия 1.0.2
Последнее Обновление 2022-09-08
Дата публикации 2013-10-29
Рейтинг 2.00/5 Всего 6 оценок
Разработчик https://milhen.ch
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://medium.com/p/f951315854e9
URL страницы помощи https://medium.com/p/f951315854e9
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js",
            "asyncTracking.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/dropper48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*",
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js",
                "content\/js\/plugins.js"
            ]
        }
    ],
    "description": "The easiest way to identify colors on web pages.",
    "icons": {
        "128": "images\/dropper128.png",
        "48": "images\/dropper48.png",
        "16": "images\/dropper16.png"
    },
    "manifest_version": 2,
    "name": "WhatColor",
    "version": "1.0.2",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "content\/coordinator.js",
        "content\/*"
    ]
}