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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}