Move Reddit Buttons
Moves the share/save/hide/report buttons to the left.
Τι είναι το Move Reddit Buttons;
Το Move Reddit Buttons είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ictinus, και η κύρια λειτουργία του είναι "Moves the share/save/hide/report buttons to the left.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Move Reddit Buttons
Λήψη αρχείων επέκτασης Move Reddit Buttons σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Intended for Reddit, this extension moves the share/save/hide/report/comment buttons to the left of the tagline (points/age/submitter) so that the buttons do not change position horizontally from one entry to the next. Especially convenient for those who like to hide entries in rapid succession. You may also wish to check out the evolved version of this extension which is a userscript. See the support link.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Move Reddit Buttons |
ID | mbdhoojhjoeboanilfflnmffphkndicn |
Επίσημο URL | https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn |
Περιγραφή | Moves the share/save/hide/report buttons to the left. |
Μέγεθος Αρχείου | 53.45 KB |
Αριθμός Εγκαταστάσεων | 14 |
Τρέχουσα Έκδοση | 1.23.1 |
Τελευταία Ενημέρωση | 2014-07-26 |
Ημερομηνία Δημοσίευσης | 2014-07-26 |
Αξιολόγηση | 4.71/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | Ictinus |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | http://userscripts.org/scripts/show/66496 |
Υποστηριζόμενες Γλώσσες | ar |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Move Reddit Buttons", "description": "Moves the share\/save\/hide\/report buttons to the left.", "version": "1.23.1", "background": { "scripts": [] }, "permissions": [ "http:\/\/*.reddit.com\/", "https:\/\/*.reddit.com\/" ], "content_scripts": [ { "matches": [ "http:\/\/*.reddit.com\/*", "https:\/\/*.reddit.com\/*" ], "run_at": "document_end", "js": [ "moveRedditButtons.user.js" ] } ] } |