Goodreads Drag-and-Drop Organizer
This extension allows to order sortable goodreads bookshelves via dragging
Τι είναι το Goodreads Drag-and-Drop Organizer;
Το Goodreads Drag-and-Drop Organizer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον wolvendev, και η κύρια λειτουργία του είναι "This extension allows to order sortable goodreads bookshelves via dragging".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Goodreads Drag-and-Drop Organizer
Λήψη αρχείων επέκτασης Goodreads Drag-and-Drop Organizer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
I got tired of pre-2000 fashion of organizing my to-read list at Goodreads and made this. The extension does only one thing -- allows you to sort your Goodreads' books in a drag and drop fashion, saving your time and nerves on waiting for yet-another page refresh or trying to line-up the numerical order in your head. It's especially useful for organizing large read-lists (mine is still greater than have-read one).
Currently seems stable enough, but do mind that it was created in one evening, so all the bug reports are greatly appreciated. (You can contact me directly at [email protected] or through feedback form on marketplace). But please double-check with FAQ on extension popup in advance. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | aeaennpmhjpcedgpfpejpekpjmafgkmn |
| Επίσημο URL | https://chromewebstore.google.com/detail/goodreads-drag-and-drop-o/aeaennpmhjpcedgpfpejpekpjmafgkmn |
| Περιγραφή | This extension allows to order sortable goodreads bookshelves via dragging |
| Μέγεθος Αρχείου | 250 KB |
| Αριθμός Εγκαταστάσεων | 138 |
| Τρέχουσα Έκδοση | 0.1.1 |
| Τελευταία Ενημέρωση | 2016-10-04 |
| Ημερομηνία Δημοσίευσης | 2016-10-04 |
| Αξιολόγηση | 3.60/5 Συνολικά 5 Αξιολογήσεις |
| Προγραμματιστής | wolvendev |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Υποστηριζόμενες Γλώσσες | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Goodreads Drag-and-Drop Organizer",
"description": "This extension allows to order sortable goodreads bookshelves via dragging",
"version": "0.1.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.goodreads.com\/review\/list\/*"
],
"js": [
"prototype.js",
"jquery-3.1.1.js",
"jquery-ui.js",
"inject-sortable.js"
]
}
],
"permissions": [
"activeTab"
]
} | |