Google Hangout Editor
Allows access to edit the google hangouts user interface.
什么是Google Hangout Editor?
Google Hangout Editor是由Guy Ross开发的Chrome扩展程序,该扩展的主要功能是“Allows access to edit the google hangouts user interface.”。
扩展截图
下载Google Hangout Editor扩展crx文件
下载Google Hangout Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Google Hangouts UI Editor. Allows you to take full control over your google hangouts page. Allows you to remove the annoying text, disable the background and even use your own custom backgrounds.
扩展基本信息
名称 | Google Hangout Editor |
ID | ieadkjmeiojipognhgeomlcdlpgdpekn |
官方URL | https://chromewebstore.google.com/detail/google-hangout-editor/ieadkjmeiojipognhgeomlcdlpgdpekn |
简介 | Allows access to edit the google hangouts user interface. |
文件大小 | 51.79 KB |
安装次数 | 1,338 |
当前版本 | 1.2.2.1 |
更新时间 | 2018-02-28 |
上架时间 | 2018-02-28 |
评分 | 3.00/5 共18次评分 |
开发者 | Guy Ross |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Hangout Editor", "author": "Guy A. Ross", "description": "Allows access to edit the google hangouts user interface.", "version": "1.2.2.1", "manifest_version": 2, "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.hangouts.google.com\/*" ], "js": [ "vendor\/jquery.js", "content_script\/components.js", "content_script\/main.js" ], "css": [ "content_script\/styles.css" ] } ], "browser_action": { "default_title": "Google Hangouts Editor.", "default_icon": "icons\/icon-128.png", "default_popup": "popup_component\/main.html" }, "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' https:\/\/code.jquery.com https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/ https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/; object-src 'self'" } |