Hyped News Amplifier

Spot hyped news at a glance. (on Hacker News and Reddit)

Что такое Hyped News Amplifier?

Hyped News Amplifier - это расширение Chrome, разработанное https://mondotondo.com, и его основная функция - "Spot hyped news at a glance. (on Hacker News and Reddit)".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Hyped News Amplifier spreads Hacker News messages on the page, and rates Reddit messages with up to 5 stars, according to the number of points and comments, conveniently weighted the way you like. At the same time, it preserves the list positions of all the messages, so that they continue drifting down as they age.


-- CONFIGURATION --

Hyped News Amplifier configuration is dead simple. It only needs a number to do its magic. By default the number is set to 50%, meaning that points and comments weigh the same. Open the Options page and customize that number. For example, if you set it to 10% points and 90% comments, then comments will count 9 times more than points.


-- CHANGE LOG --

1.9.0
+ Fixed Reddit support
+ Introduced the _Stars_ mode
+ Simplified the _Options_ page                    

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

Название Hyped News Amplifier Hyped News Amplifier
ID jaapjannjfdcklcgadbhiddhbelhhnkp
Официальный URL https://chromewebstore.google.com/detail/hyped-news-amplifier/jaapjannjfdcklcgadbhiddhbelhhnkp
Описание Spot hyped news at a glance. (on Hacker News and Reddit)
Размер файла 34.56 KB
Количество установок 34
Текущая Версия 1.9.0
Последнее Обновление 2021-09-23
Дата публикации 2014-07-11
Рейтинг 5.00/5 Всего 6 оценок
Разработчик https://mondotondo.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://mondotondo.com/hyped-news-amplifier/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hyped News Amplifier",
    "short_name": "Hyped News",
    "version": "1.9.0",
    "description": "Spot hyped news at a glance. (on Hacker News and Reddit)",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "amplifier.class.js",
                "content-hackernews.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "amplifier.class.js",
                "content-reddit.js"
            ],
            "css": [
                "rating-stars.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_title": "Hyped News Amplifier",
        "default_icon": "images\/hype-amplifier-19.png",
        "default_popup": "options.html"
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "webNavigation"
    ],
    "icons": {
        "16": "images\/hype-amplifier-16.png",
        "48": "images\/hype-amplifier-48.png",
        "128": "images\/hype-amplifier-128.png"
    }
}