Websites Accessibility
accessibility tool for every website
什么是Websites Accessibility?
Websites Accessibility是由RanBuch开发的Chrome扩展程序,该扩展的主要功能是“accessibility tool for every website”。
扩展截图
下载Websites Accessibility扩展crx文件
下载Websites Accessibility扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add accessibility menu to every website!
Features:
* increase text size
* decrease text size
* increase text spacing
* decrease text spacing
* invert colors
* gray hues
* underline links
* hotkeys
* big cursor
* reading guide
* text to speech
* speech to text
For developers who what's to add this to their site:
npm:
https://www.npmjs.com/package/accessibility
github:
https://github.com/ranbuch/accessibility 扩展基本信息
| 名称 | |
| ID | aefndakodjcaapnmofhkmdbkabghakgn |
| 官方URL | https://chromewebstore.google.com/detail/websites-accessibility/aefndakodjcaapnmofhkmdbkabghakgn |
| 简介 | accessibility tool for every website |
| 文件大小 | 24.44 KB |
| 安装次数 | 312 |
| 当前版本 | 3.0.96 |
| 更新时间 | 2022-07-23 |
| 上架时间 | 2020-04-25 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | RanBuch |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Websites Accessibility",
"short_name": "accessibility",
"version": "3.0.96",
"description": "accessibility tool for every website",
"manifest_version": 2,
"background": {
"page": "background.html"
},
"icons": {
"16": "logo_accessibility_16.png",
"48": "logo_accessibility_48.png",
"128": "logo_accessibility_128.png"
},
"browser_action": {
"default_icon": {
"19": "logo_accessibility_19.png",
"38": "logo_accessibility_38.png"
},
"default_title": "website accessibility tool",
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"accessibility.user.js"
],
"run_at": "document_start"
}
]
} | |