Sorted Stack
An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
Was ist Sorted Stack?
Sorted Stack ist eine Chrome-Erweiterung, die von SwickDev entwickelt wurde, und ihr Hauptmerkmal ist "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".
Erweiterungsscreenshots
Sorted Stack-Erweiterungs-CRX-Datei herunterladen
Laden Sie Sorted Stack-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Sorted Stack |
ID | fpbbollnpcfogjaccdegemhcmpbeglkn |
Offizielle URL | https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn |
Beschreibung | An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as… |
Dateigröße | 33.16 KB |
Installationsanzahl | 22 |
Aktuelle Version | 0.1 |
Letztes Update | 2016-04-27 |
Veröffentlichungsdatum | 2016-04-26 |
Bewertung | 4.40/5 Insgesamt 5 Bewertungen |
Entwickler | SwickDev |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |