Voice Scroll
Reorganizes the Google Voice interface to replace the collapsible conversations with scrollable, resizable conversations.
什么是Voice Scroll?
Voice Scroll是由alexevanczuk开发的Chrome扩展程序,该扩展的主要功能是“Reorganizes the Google Voice interface to replace the collapsible conversations with scrollable, resizable conversations.”。
扩展截图
下载Voice Scroll扩展crx文件
下载Voice Scroll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | cgeednalmjpnlhifbphhclaheiklmafd |
| 官方URL | https://chrome.google.com/webstore/detail/voice-scroll/cgeednalmjpnlhifbphhclaheiklmafd |
| 简介 | Reorganizes the Google Voice interface to replace the collapsible conversations with scrollable, resizable conversations. |
| 文件大小 | 89.21 KB |
| 安装次数 | 153 |
| 当前版本 | 1.2 |
| 更新时间 | 2014-04-30 |
| 上架时间 | 2014-04-30 |
| 评分 | 4.00/5 共1次评分 |
| 开发者 | alexevanczuk |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"page": "background.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"includes\/content.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"description": "Reorganizes the Google Voice interface to replace the collapsible conversations with scrollable, resizable conversations.",
"icons": {
"128": "icons\/icon128.png",
"16": "icons\/button.png",
"48": "icons\/icon48.png"
},
"manifest_version": 2,
"name": "Voice Scroll",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"webNavigation",
"management",
"notifications",
"webRequest",
"webRequestBlocking",
"nativeMessaging"
],
"version": "1.2",
"web_accessible_resources": [
"res\/*",
"assets\/*",
"icons\/*"
]
} | |