Sorted Stack
An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
Что такое Sorted Stack?
Sorted Stack - это расширение Chrome, разработанное SwickDev, и его основная функция - "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".
Снимки экрана расширения
Скачать файл CRX расширения Sorted Stack
Скачайте файлы расширений Sorted Stack в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as moving this answer to the first place position in the list. Normally the person can asking the question can select a single answer as accepted, but often times other answers arise that were too late to the game or the asker didn't like. This extension always places the answers in sorted order by the number of votes the answer received.
Основная информация о расширении
Название | Sorted Stack |
ID | fpbbollnpcfogjaccdegemhcmpbeglkn |
Официальный URL | https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn |
Описание | An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as… |
Размер файла | 33.16 KB |
Количество установок | 22 |
Текущая Версия | 0.1 |
Последнее Обновление | 2016-04-27 |
Дата публикации | 2016-04-26 |
Рейтинг | 4.40/5 Всего 5 оценок |
Разработчик | SwickDev |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sorted Stack", "version": "0.1", "content_scripts": [ { "matches": [ "http:\/\/stackoverflow.com\/questions\/*", "https:\/\/stackoverflow.com\/questions\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ "images\/*.png" ], "icons": { "48": "images\/icon.png" } } |