Upper Case Detector

Highlights all upper-cased text sections of the page

Что такое Upper Case Detector?

Upper Case Detector - это расширение Chrome, разработанное Cory Forsyth, и его основная функция - "Highlights all upper-cased text sections of the page".

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

screenshot
screenshot

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

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

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

                        Visually highlight parts of the page that are all UPPER CASE text. This is useful as a design tool for getting a sense of the visual weight of various parts of the page.                    

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

Название Upper Case Detector Upper Case Detector
ID feplblmlbcgokeooolefhnjekoedmeio
Официальный URL https://chromewebstore.google.com/detail/upper-case-detector/feplblmlbcgokeooolefhnjekoedmeio
Описание Highlights all upper-cased text sections of the page
Размер файла 38.91 KB
Количество установок 19
Текущая Версия 1.5
Последнее Обновление 2017-02-27
Дата публикации 2017-02-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Cory Forsyth
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://coryforsyth.com/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Upper Case Detector",
    "short_name": "Upper Case Detector",
    "manifest_version": 2,
    "version": "1.5",
    "description": "Highlights all upper-cased text sections of the page",
    "author": "Cory Forsyth",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "19": "icon-19.png"
    },
    "browser_action": {
        "default_title": "Upper Case Detector",
        "default_icon": {
            "128": "icon-128.png",
            "48": "icon-48.png",
            "64": "icon-64.png",
            "32": "icon-32.png",
            "19": "icon-19.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persisent": false
    }
}