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開發的Chrome擴展程式,該擴展的主要功能是“This extension allows to order sortable goodreads bookshelves via dragging”。
擴展截圖
下載Goodreads Drag-and-Drop Organizer擴展crx文件
下載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 |
| 官方網址 | 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"
]
} | |