Doc Scratch Readability Improver

Makes Doc Scratch's text more easily readable

Doc Scratch Readability Improverคืออะไร?

Doc Scratch Readability Improver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย murgatroid99 และคุณลักษณะหลักของมันคือ "Makes Doc Scratch's text more easily readable"

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

screenshot

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

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

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

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Doc Scratch Readability Improver Doc Scratch Readability Improver
ID nhbajdgedgakiagjblnoiidphblfgigl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/doc-scratch-readability-i/nhbajdgedgakiagjblnoiidphblfgigl
คำอธิบาย Makes Doc Scratch's text more easily readable
ขนาดไฟล์ 9.31 KB
จำนวนการติดตั้ง 150
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2013-08-11
วันที่เผยแพร่ 2013-08-11
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา murgatroid99
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}