Goodreads Drag-and-Drop Organizer

This extension allows to order sortable goodreads bookshelves via dragging

Goodreads Drag-and-Drop Organizer là gì?

Goodreads Drag-and-Drop Organizer là một tiện ích mở rộng Chrome được phát triển bởi wolvendev, và tính năng chính của nó là "This extension allows to order sortable goodreads bookshelves via dragging".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Goodreads Drag-and-Drop Organizer

Tải xuống các tệp mở rộng Goodreads Drag-and-Drop Organizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Goodreads Drag-and-Drop Organizer Goodreads Drag-and-Drop Organizer
ID aeaennpmhjpcedgpfpejpekpjmafgkmn
URL Chính Thức https://chromewebstore.google.com/detail/goodreads-drag-and-drop-o/aeaennpmhjpcedgpfpejpekpjmafgkmn
Mô tả This extension allows to order sortable goodreads bookshelves via dragging
Kích Thước Tệp 250 KB
Số Lần Cài Đặt 138
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2016-10-04
Ngày Phát Hành 2016-10-04
Đánh Giá 3.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển wolvendev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}