QuickReader

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

什麼是QuickReader?

QuickReader是由Hopeful Llama開發的Chrome擴展程式,該擴展的主要功能是“Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.”。

擴展截圖

screenshot

下載QuickReader擴展crx文件

下載QuickReader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 QuickReader QuickReader
ID ibnoccdnpacmjpjaobalgiahopkkdlcl
官方網址 https://chromewebstore.google.com/detail/quickreader/ibnoccdnpacmjpjaobalgiahopkkdlcl
簡介 Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.
檔案大小 229 KB
安裝次數 25
目前版本 0.0.0.1
更新時間 2014-09-03
上架時間 2014-09-03
評分 4.00/5 共 4 次評分
開發者 Hopeful Llama
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}