What Hacker News Says
Easily find Hacker News threads about the page you're currently browsing.
Vad är What Hacker News Says?
What Hacker News Says är en Chrome-tillägg utvecklad av https://pino.ceniccola.it, och dess huvudfunktion är "Easily find Hacker News threads about the page you're currently browsing.".
Tilläggsskärmbilder
Ladda ner What Hacker News Says-förlängningens CRX-fil
Ladda ner What Hacker News Says-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Dead-simple yet very useful extension that looks for threads on on popular social news aggregator Hacker News via HN Search API (powered by Algolia). For your privacy, this web extension fetches the API only when the popup is clicked and does not run any background script. It also requires minimum permissions (just "activeTab" actually). Source is on GitHub: https://github.com/pinoceniccola/what-hn-says-webext
Grundläggande Information om Tillägg
Namn | What Hacker News Says |
ID | khgegkjchclhgpglloficdmdannlpmoi |
Officiell webbadress | https://chromewebstore.google.com/detail/what-hacker-news-says/khgegkjchclhgpglloficdmdannlpmoi |
Beskrivning | Easily find Hacker News threads about the page you're currently browsing. |
Filstorlek | 346 KB |
Antal Installationer | 431 |
Aktuell Version | 0.2.0 |
Senast Uppdaterad | 2021-03-08 |
Publiceringsdatum | 2020-08-04 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | https://pino.ceniccola.it |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/pinoceniccola/what-hn-says-webext |
Hjälpsida URL | https://github.com/pinoceniccola/what-hn-says-webext |
URL till Sekretesspolicy Sidan | https://aprico.org/privacy.html |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "What Hacker News Says", "version": "0.2.0", "description": "Easily find Hacker News threads about the page you're currently browsing.", "homepage_url": "https:\/\/github.com\/pinoceniccola\/what-hn-says-webext", "icons": { "16": "assets\/icon-16.png", "32": "assets\/icon-32.png", "48": "assets\/icon-48.png", "96": "assets\/icon-96.png", "128": "assets\/icon-128.png", "256": "assets\/icon-256.png" }, "permissions": [ "activeTab" ], "browser_action": { "browser_style": false, "default_icon": { "16": "assets\/icon-16.png", "32": "assets\/icon-32.png", "48": "assets\/icon-48.png" }, "default_title": "Click to find what HN says", "default_popup": "popup.html" } } |