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" } } |