Doc Scratch Readability Improver
Makes Doc Scratch's text more easily readable
Qu'est-ce que Doc Scratch Readability Improver ?
Doc Scratch Readability Improver est une extension Chrome développée par murgatroid99, et sa fonction principale est "Makes Doc Scratch's text more easily readable".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Doc Scratch Readability Improver
Téléchargez les fichiers d'extension Doc Scratch Readability Improver au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension makes Doc Scratch's text easier to read by highlighting it in green when you hover over it.
Informations de Base sur l'Extension
Nom | |
ID | nhbajdgedgakiagjblnoiidphblfgigl |
URL Officiel | https://chrome.google.com/webstore/detail/doc-scratch-readability-i/nhbajdgedgakiagjblnoiidphblfgigl |
Description | Makes Doc Scratch's text more easily readable |
Taille du Fichier | 9.31 KB |
Nombre d'Installations | 150 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2013-08-11 |
Date de Publication | 2013-08-11 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | murgatroid99 |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |