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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
| 공식 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"
]
} | |