Hacker News Sorter
Sort posts by points, enables search and linkify's Hacker News.
什么是Hacker News Sorter?
Hacker News Sorter是由thejspr开发的Chrome扩展程序,该扩展的主要功能是“Sort posts by points, enables search and linkify's Hacker News.”。
扩展截图
下载Hacker News Sorter扩展crx文件
下载Hacker News Sorter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
- Sort posts by points - Enable search in header - Autolink posts Sort posts by clicking the button in the top left corner. Feel free to leave any suggestions, requests or feedback. Source available at: https://github.com/thejspr/hacker-news-sorter Regards, https://news.ycombinator.com/user?id=thejspr
扩展基本信息
名称 | Hacker News Sorter |
ID | anmdmfcnlenkjbiffghfjglgjpchneeo |
官方URL | https://chromewebstore.google.com/detail/hacker-news-sorter/anmdmfcnlenkjbiffghfjglgjpchneeo |
简介 | Sort posts by points, enables search and linkify's Hacker News. |
文件大小 | 39.18 KB |
安装次数 | 101 |
当前版本 | 1.7.0 |
更新时间 | 2022-10-09 |
上架时间 | 2014-09-19 |
评分 | 5.00/5 共4次评分 |
开发者 | thejspr |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/thejspr/hacker-news-sorter |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hacker News Sorter", "version": "1.7.0", "description": "Sort posts by points, enables search and linkify's Hacker News.", "content_scripts": [ { "matches": [ "*:\/\/news.ycombinator.com\/*" ], "js": [ "jquery-3.6.1.min.js", "content.js", "auto-link.js" ] } ], "icons": { "48": "icon2.png" }, "permissions": [ "*:\/\/news.ycombinator.com\/*" ], "background": "background.html" } |