Sorted Stack
An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
¿Qué es Sorted Stack?
Sorted Stack es una extensión de Chrome desarrollada por SwickDev, y su función principal es "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Sorted Stack
Descarga archivos de extensión Sorted Stack en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Sorted Stack |
ID | fpbbollnpcfogjaccdegemhcmpbeglkn |
URL Oficial | https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn |
Descripción | An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as… |
Tamaño del Archivo | 33.16 KB |
Cantidad de Instalaciones | 22 |
Versión Actual | 0.1 |
Última Actualización | 2016-04-27 |
Fecha de Publicación | 2016-04-26 |
Calificación | 4.40/5 Total de 5 Calificaciones |
Desarrollador | SwickDev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |