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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Goodreads Drag-and-Drop Organizer 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"
    ]
}