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
公式URL 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
Eメール [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"
    }
}