Permanent Readability

Always use Readability on selected domains

Permanent Readability란 무엇입니까?

Permanent Readability은(는) https://www.zaonce.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Always use Readability on selected domains"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Permanent Readability 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension simply adds a context menu to enable/disable Readability (https://www.readability.com) for the current domain on a permanent basis.

It's designed to work with the Readability Redux extension (http://preview.tinyurl.com/yl4oky3), but will also work without it (just a bit slower).

0.10
- Added support for wildcards in domain matching
- Fixed the context menu

0.9 
- Added some help for defining patterns.
- Fixed confirm dialog when leaving options page after making changes.

0.8
- Fixes the back button and reload button so that you can cancel readability.
- Separate the domain name from the pattern to make it work more consistently
- Detects presence of Readability Redux correctly.

Note: This version will attempt to update your previously defined patterns although I can't guarantee this will work 100%.

0.7
- Improved options page (more consistent with chromium's preferences page) using Nimi Cleanser (http://preview.tinyurl.com/632bh7m) as inspiration.

0.6
- Fixed bug (Thanks Ahmed) where the wrong tab got rendered by Readability.

0.5
- Removed broken logging

0.4
- Fixed a bug where the extension fails first time.

0.3
- Now has an options page where you can manually add, remove and edit the patterns that enable Readabiity.
- Default pattern added/removed from the context menu now matches subpages of the url, no longer the domain name on it's own.                    

확장 프로그램 기본 정보

이름 Permanent Readability Permanent Readability
ID gkoadlaadbnnaipkigapbbgbclcdhkaf
공식 URL https://chromewebstore.google.com/detail/permanent-readability/gkoadlaadbnnaipkigapbbgbclcdhkaf
설명 Always use Readability on selected domains
파일 크기 3.4 MB
설치 횟수 4,862
현재 버전 0.11
최근 업데이트 2016-05-04
출시 날짜 2016-05-04
평점 3.75/5 총 20 개의 평점
개발자 https://www.zaonce.com
결제 유형 free
확장 프로그램 웹 사이트 http://www.zaonce.com/projects/permanent-readability.shtml
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Permanent Readability",
    "description": "Always use Readability on selected domains",
    "version": "0.11",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "management",
        "contextMenus",
        "tabs",
        "chrome:\/\/favicon\/"
    ],
    "page_action": {
        "default_icon": "icon48.png",
        "default_title": "Permanent Readability enabled..."
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "visit.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "icon16.png",
        "icon48.png"
    ]
}