Google Hangout Editor
Allows access to edit the google hangouts user interface.
Что такое Google Hangout Editor?
Google Hangout Editor - это расширение Chrome, разработанное Guy Ross, и его основная функция - "Allows access to edit the google hangouts user interface.".
Снимки экрана расширения
Скачать файл CRX расширения Google Hangout Editor
Скачайте файлы расширений 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'" } |