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.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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 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
Eメール [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"
}