QuickReader

Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.

QuickReader là gì?

QuickReader là một tiện ích mở rộng Chrome được phát triển bởi Hopeful Llama, và tính năng chính của nó là "Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.".

Ả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 QuickReader

Tải xuống các tệp mở rộng QuickReader 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

                        QuickReader is a light weight extension that allow you to select part of a web page, and use the QuickRead action to transfer your selection to a clearer and more spacious tab. This allows for easy reading of your selection, and maximises the usage of screen space. Especially useful for reading large amounts of text, such as documentation or articles. Also useful for when the page you are reading is cluttered with unrelated content like adverts or navigation menus.

Though the options, you can specify some basic CSS to adapt your QuickRead tab to your liking allowing for stylisation. Recommendation is to have a dark background, with light foreground elements.                    

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

Tên QuickReader QuickReader
ID ibnoccdnpacmjpjaobalgiahopkkdlcl
URL Chính Thức https://chromewebstore.google.com/detail/quickreader/ibnoccdnpacmjpjaobalgiahopkkdlcl
Mô tả Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.
Kích Thước Tệp 229 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2014-09-03
Ngày Phát Hành 2014-09-03
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Hopeful Llama
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickReader",
    "short_name": "QR",
    "description": "Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.",
    "version": "0.0.0.1",
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "options.html",
        "default_icon": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}