hckr news
Add functionality to news.ycombinator.com and hckrnews.com
Wat is hckr news?
hckr news is een Chrome-extensie ontwikkeld door https://hckrnews.com, en de belangrijkste functie is "Add functionality to news.ycombinator.com and hckrnews.com".
Extensie Screenshots
Download het CRX-bestand van de extensie hckr news
Download hckr news-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The browser extension adds a few features to both Hacker News and hckr news:
* Highlight New Comments
* Identify New Comments on hckrnews.com
* Alexander Kirk's collapsible threads Basisinformatie over de Extensie
| Naam | |
| ID | mnlaodleonmmfkdhfofamacceeikgecp |
| Officiële URL | https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp |
| Beschrijving | Add functionality to news.ycombinator.com and hckrnews.com |
| Bestandsgrootte | 52.15 KB |
| Aantal Installaties | 1,010 |
| Huidige Versie | 2.0 |
| Laatst Bijgewerkt | 2020-01-07 |
| Publicatiedatum | 2020-01-07 |
| Beoordeling | 4.59/5 Totaal 17 Beoordelingen |
| Ontwikkelaar | https://hckrnews.com |
| Betalingswijze | free |
| Extensiewebsite | http://hckrnews.com/about.html |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "hckr news",
"version": "2.0",
"manifest_version": 2,
"icons": {
"72": "hckrnews-72.png"
},
"description": "Add functionality to news.ycombinator.com and hckrnews.com",
"background": {
"scripts": [
"browser-polyfill.js",
"background-script.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/hckrnews.com\/*"
],
"js": [
"browser-polyfill.js",
"hckr_inject.js"
]
},
{
"matches": [
"*:\/\/news.ycombinator.com\/item*"
],
"js": [
"browser-polyfill.js",
"hn_inject.js",
"jquery-1.7.1.min.js",
"hacker_news_comment_coll.user.js"
]
}
]
} | |