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」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

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 wolvendev@gmail.com 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
Eメール wolvendev@gmail.com
支払い方法 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"
    ]
}