Hyped News Amplifier
Spot hyped news at a glance. (on Hacker News and Reddit)
Qu'est-ce que Hyped News Amplifier ?
Hyped News Amplifier est une extension Chrome développée par https://mondotondo.com, et sa fonction principale est "Spot hyped news at a glance. (on Hacker News and Reddit)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hyped News Amplifier
Téléchargez les fichiers d'extension Hyped News Amplifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Hyped News Amplifier |
ID | jaapjannjfdcklcgadbhiddhbelhhnkp |
URL Officiel | https://chromewebstore.google.com/detail/hyped-news-amplifier/jaapjannjfdcklcgadbhiddhbelhhnkp |
Description | Spot hyped news at a glance. (on Hacker News and Reddit) |
Taille du Fichier | 34.56 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.9.0 |
Dernière Mise à Jour | 2021-09-23 |
Date de Publication | 2014-07-11 |
Évaluation | 5.00/5 Total 6 Évaluations |
Développeur | https://mondotondo.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://mondotondo.com/hyped-news-amplifier/ |
Langues Prises en Charge | 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" } } |