Hacker News Sorter
Sort posts by points, enables search and linkify's Hacker News.
Что такое Hacker News Sorter?
Hacker News Sorter - это расширение Chrome, разработанное thejspr, и его основная функция - "Sort posts by points, enables search and linkify's Hacker News.".
Снимки экрана расширения
Скачать файл CRX расширения Hacker News Sorter
Скачайте файлы расширений 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 Основная информация о расширении
| Название | |
| 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"
} | |