Doc Scratch Readability Improver

Makes Doc Scratch's text more easily readable

Doc Scratch Readability Improver là gì?

Doc Scratch Readability Improver là một tiện ích mở rộng Chrome được phát triển bởi murgatroid99, và tính năng chính của nó là "Makes Doc Scratch's text more easily readable".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Doc Scratch Readability Improver

Tải xuống các tệp mở rộng Doc Scratch Readability Improver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension makes Doc Scratch's text easier to read by highlighting it in green when you hover over it.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Doc Scratch Readability Improver Doc Scratch Readability Improver
ID nhbajdgedgakiagjblnoiidphblfgigl
URL Chính Thức https://chrome.google.com/webstore/detail/doc-scratch-readability-i/nhbajdgedgakiagjblnoiidphblfgigl
Mô tả Makes Doc Scratch's text more easily readable
Kích Thước Tệp 9.31 KB
Số Lần Cài Đặt 150
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2013-08-11
Ngày Phát Hành 2013-08-11
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển murgatroid99
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Doc Scratch Readability Improver",
    "version": "0.2.0",
    "manifest_version": 2,
    "description": "Makes Doc Scratch's text more easily readable",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.mspaintadventures.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "Doc Scratch Readability improved"
    },
    "permissions": [
        "*:\/\/*.mspaintadventures.net\/*",
        "webNavigation",
        "tabs"
    ]
}