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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}