Sorted Stack
An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
Hvad er Sorted Stack?
Sorted Stack er en Chrome-udvidelse udviklet af SwickDev, og dens hovedfunktion er "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".
Udvidelsesskærmbilleder
Download Sorted Stack-udvidelses-CRX-fil
Download Sorted Stack-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Sorted Stack |
ID | fpbbollnpcfogjaccdegemhcmpbeglkn |
Officiel URL | https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn |
Beskrivelse | An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as… |
Filstørrelse | 33.16 KB |
Antal Installationer | 22 |
Nuværende Version | 0.1 |
Senest Opdateret | 2016-04-27 |
Udgivelsesdato | 2016-04-26 |
Bedømmelse | 4.40/5 Samlet 5 Bedømmelser |
Udvikler | SwickDev |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |