Hyped News Amplifier

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

什麼是Hyped News Amplifier?

Hyped News Amplifier是由https://mondotondo.com開發的Chrome擴展程式,該擴展的主要功能是“Spot hyped news at a glance. (on Hacker News and Reddit)”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Hyped News Amplifier擴展crx文件

下載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
官方網址 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"
    }
}