Doc Scratch Readability Improver
Makes Doc Scratch's text more easily readable
Was ist Doc Scratch Readability Improver?
Doc Scratch Readability Improver ist eine Chrome-Erweiterung, die von murgatroid99 entwickelt wurde, und ihr Hauptmerkmal ist "Makes Doc Scratch's text more easily readable".
Erweiterungsscreenshots
Doc Scratch Readability Improver-Erweiterungs-CRX-Datei herunterladen
Laden Sie Doc Scratch Readability Improver-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension makes Doc Scratch's text easier to read by highlighting it in green when you hover over it.
Grundlegende Informationen zur Erweiterung
Name | |
ID | nhbajdgedgakiagjblnoiidphblfgigl |
Offizielle URL | https://chrome.google.com/webstore/detail/doc-scratch-readability-i/nhbajdgedgakiagjblnoiidphblfgigl |
Beschreibung | Makes Doc Scratch's text more easily readable |
Dateigröße | 9.31 KB |
Installationsanzahl | 150 |
Aktuelle Version | 0.2.0 |
Letztes Update | 2013-08-11 |
Veröffentlichungsdatum | 2013-08-11 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | murgatroid99 |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |