Doc Scratch Readability Improver
Makes Doc Scratch's text more easily readable
什么是Doc Scratch Readability Improver?
Doc Scratch Readability Improver是由murgatroid99开发的Chrome扩展程序,该扩展的主要功能是“Makes Doc Scratch's text more easily readable”。
扩展截图
下载Doc Scratch Readability Improver扩展crx文件
下载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.
扩展基本信息
名称 | |
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" ] } |