What Hacker News Says
Easily find Hacker News threads about the page you're currently browsing.
什麼是What Hacker News Says?
What Hacker News Says是由https://pino.ceniccola.it開發的Chrome擴展程式,該擴展的主要功能是“Easily find Hacker News threads about the page you're currently browsing.”。
擴展截圖
下載What Hacker News Says擴展crx文件
下載What Hacker News Says擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | What Hacker News Says |
ID | khgegkjchclhgpglloficdmdannlpmoi |
官方網址 | https://chromewebstore.google.com/detail/what-hacker-news-says/khgegkjchclhgpglloficdmdannlpmoi |
簡介 | Easily find Hacker News threads about the page you're currently browsing. |
檔案大小 | 346 KB |
安裝次數 | 431 |
目前版本 | 0.2.0 |
更新時間 | 2021-03-08 |
上架時間 | 2020-08-04 |
評分 | 5.00/5 共 5 次評分 |
開發者 | https://pino.ceniccola.it |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/pinoceniccola/what-hn-says-webext |
說明頁面URL | https://github.com/pinoceniccola/what-hn-says-webext |
隱私政策頁面URL | https://aprico.org/privacy.html |
支援的語言 | 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" } } |