Just the facts

Just the Facts highlights key information (quotes, names, numbers, dates) in clear, bold colors, enabling both the casual news…

Что такое Just the facts?

Just the facts - это расширение Chrome, разработанное Beyang, и его основная функция - "Just the Facts highlights key information (quotes, names, numbers, dates) in clear, bold colors, enabling both the casual news…".

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

screenshot
screenshot
screenshot

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

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

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

                        Just the Facts highlights key information (quotes, names, numbers, dates) in clear, bold colors, enabling both the casual news reader and hardcore news junkie to glean the gist of a webpage at a glance.  Cut through the cruft and get straight to the cold, hard facts.

By default, Just the Facts is activated for a selection of popular news sites such as The New York Times, The Economist, and The Washington Post, but this list can easily be modified via the options screen (accessible from the Chrome extensions menu).                    

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

Название Just the facts Just the facts
ID ceaekpehbnemdlpggkmlacchidmeejnf
Официальный URL https://chromewebstore.google.com/detail/just-the-facts/ceaekpehbnemdlpggkmlacchidmeejnf
Описание Just the Facts highlights key information (quotes, names, numbers, dates) in clear, bold colors, enabling both the casual news…
Размер файла 28.67 KB
Количество установок 60
Текущая Версия 2.0
Последнее Обновление 2013-09-30
Дата публикации 2013-09-30
Рейтинг 4.20/5 Всего 10 оценок
Разработчик Beyang
Тип оплаты free
Официальный сайт расширения https://github.com/beyang/justthefacts
URL страницы помощи https://github.com/beyang/justthefacts/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just the facts",
    "version": "2.0",
    "page_action": {
        "default_title": "Just the facts"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "css": [
                "highlight.css"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "highlight.js"
            ]
        }
    ],
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "manifest_version": 2
}