Goodreads Drag-and-Drop Organizer
This extension allows to order sortable goodreads bookshelves via dragging
O que é Goodreads Drag-and-Drop Organizer?
Goodreads Drag-and-Drop Organizer é uma extensão do Chrome desenvolvida por wolvendev, e sua principal característica é "This extension allows to order sortable goodreads bookshelves via dragging".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Goodreads Drag-and-Drop Organizer
Baixe arquivos de extensão Goodreads Drag-and-Drop Organizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Goodreads Drag-and-Drop Organizer |
ID | aeaennpmhjpcedgpfpejpekpjmafgkmn |
URL Oficial | https://chromewebstore.google.com/detail/goodreads-drag-and-drop-o/aeaennpmhjpcedgpfpejpekpjmafgkmn |
Descrição | This extension allows to order sortable goodreads bookshelves via dragging |
Tamanho do Arquivo | 250 KB |
Contagem de Instalações | 138 |
Versão Atual | 0.1.1 |
Última Atualização | 2016-10-04 |
Data de Publicação | 2016-10-04 |
Classificação | 3.60/5 Total de 5 Avaliações |
Desenvolvedor | wolvendev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |