Where's My Book?

The missing search for Google Play Books

Where's My Book? là gì?

Where's My Book? là một tiện ích mở rộng Chrome được phát triển bởi https://bradleybossard.com, và tính năng chính của nó là "The missing search for Google Play Books".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Where's My Book?

Tải xuống các tệp mở rộng Where's My Book? 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

                        Filter Google Play Books by title or author.

For far too long, we have been burdened by not being able to search our uploaded Google Play Books results.

Installing the extension, you are now presented with a search box, that upon typing, filters your currently loaded Google Books results by title or author.  Not great, but it's a vast improvement, IMO.
 
** New in version 1.3.1**
Another fix.  Today I noticed the extension not showing up at all.  Figured out it was buried under the other UI.  Increased the z-index so it sits on top again.

** New in version 1.3.0**
Fixed broken functionality of extension.  Google updated the way they generate CSS class names on the page, which completely broke the functionality of the extension and will make it more difficult to main going forward.

** New in version 1.2.0 **

- Tooltip to inform you how many books match your current filter and how many books you currently have loaded.  In the course of developing this extension, I have discovered there is a limit to 1000 books you are allow to upload to Google Books.  Therefore, this extension, once all your books are loaded, shows you how many you have toward your quota of 1000.                    

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

Tên Where's My Book? Where's My Book?
ID mloainmlkoomaleindanmpgialfgbjjc
URL Chính Thức https://chromewebstore.google.com/detail/wheres-my-book/mloainmlkoomaleindanmpgialfgbjjc
Mô tả The missing search for Google Play Books
Kích Thước Tệp 187 KB
Số Lần Cài Đặt 2,822
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2018-05-25
Ngày Phát Hành 2018-05-24
Đánh Giá 4.48/5 Tổng số 40 Đánh Giá
Nhà Phát Triển https://bradleybossard.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://bradleybossard.gitlab.io/wheres-my-book
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Where's My Book?",
    "version": "1.4.1",
    "manifest_version": 2,
    "description": "The missing search for Google Play Books",
    "homepage_url": "https:\/\/bradleybossard.gitlab.io\/wheres-my-book\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "https:\/\/play.google.com\/books*"
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Where's My Book",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/books",
                "https:\/\/play.google.com\/books\/uploads"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/play.google.com\/books",
                "https:\/\/play.google.com\/books\/uploads"
            ],
            "js": [
                "node_modules\/jquery\/dist\/jquery.min.js",
                "src\/ga\/ga-config.js",
                "src\/ga\/ga.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "imgs\/wheres-my-book-logo.svg",
        "imgs\/wheres-my-book-sort-by-author.svg",
        "imgs\/wheres-my-book-sort-by-title.svg"
    ]
}