Permanent Readability

Always use Readability on selected domains

Permanent Readabilityคืออะไร?

Permanent Readability เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.zaonce.com และคุณลักษณะหลักของมันคือ "Always use Readability on selected domains"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Permanent Readability

ดาวน์โหลดไฟล์ส่วนขยาย Permanent Readability ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}