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 wolvendev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows to order sortable goodreads bookshelves via dragging"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Goodreads Drag-and-Drop Organizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Goodreads Drag-and-Drop Organizer |
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" ] } |