Hacker News Sorter
Sort posts by points, enables search and linkify's Hacker News.
Vad är Hacker News Sorter?
Hacker News Sorter är en Chrome-tillägg utvecklad av thejspr, och dess huvudfunktion är "Sort posts by points, enables search and linkify's Hacker News.".
Tilläggsskärmbilder
Ladda ner Hacker News Sorter-förlängningens CRX-fil
Ladda ner Hacker News Sorter-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
- 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 Grundläggande Information om Tillägg
| Namn | |
| ID | anmdmfcnlenkjbiffghfjglgjpchneeo |
| Officiell webbadress | https://chromewebstore.google.com/detail/hacker-news-sorter/anmdmfcnlenkjbiffghfjglgjpchneeo |
| Beskrivning | Sort posts by points, enables search and linkify's Hacker News. |
| Filstorlek | 39.18 KB |
| Antal Installationer | 101 |
| Aktuell Version | 1.7.0 |
| Senast Uppdaterad | 2022-10-09 |
| Publiceringsdatum | 2014-09-19 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | thejspr |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/thejspr/hacker-news-sorter |
| Stödda Språk | 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"
} | |