Doc Scratch Readability Improver

Makes Doc Scratch's text more easily readable

Hvad er Doc Scratch Readability Improver?

Doc Scratch Readability Improver er en Chrome-udvidelse udviklet af murgatroid99, og dens hovedfunktion er "Makes Doc Scratch's text more easily readable".

Udvidelsesskærmbilleder

screenshot

Download Doc Scratch Readability Improver-udvidelses-CRX-fil

Download Doc Scratch Readability Improver-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Doc Scratch Readability Improver Doc Scratch Readability Improver
ID nhbajdgedgakiagjblnoiidphblfgigl
Officiel URL https://chrome.google.com/webstore/detail/doc-scratch-readability-i/nhbajdgedgakiagjblnoiidphblfgigl
Beskrivelse Makes Doc Scratch's text more easily readable
Filstørrelse 9.31 KB
Antal Installationer 150
Nuværende Version 0.2.0
Senest Opdateret 2013-08-11
Udgivelsesdato 2013-08-11
Bedømmelse 4.00/5 Samlet 4 Bedømmelser
Udvikler murgatroid99
Betalingsmetode free
Understøttede Sprog 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"
    ]
}