Google Apps Sidebar Toggle
Toggle the project navigator sidebar open and closed
Что такое Google Apps Sidebar Toggle?
Google Apps Sidebar Toggle - это расширение Chrome, разработанное seaston, и его основная функция - "Toggle the project navigator sidebar open and closed".
Снимки экрана расширения
Скачать файл CRX расширения Google Apps Sidebar Toggle
Скачайте файлы расширений Google Apps Sidebar Toggle в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Toggle the project navigator sidebar open and closed in the Google Apps Script IDE
Основная информация о расширении
Название | Google Apps Sidebar Toggle |
ID | ohpabiillaflohfmoelpklnloimplacc |
Официальный URL | https://chromewebstore.google.com/detail/google-apps-sidebar-toggl/ohpabiillaflohfmoelpklnloimplacc |
Описание | Toggle the project navigator sidebar open and closed |
Размер файла | 38.26 KB |
Количество установок | 596 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2016-11-05 |
Дата публикации | 2016-11-04 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | seaston |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.2", "manifest_version": 2, "default_locale": "en", "name": "__MSG_appName__", "short_name": "gas-toggleSidebar", "author": "[email protected]", "description": "__MSG_appDesc__", "icons": { "16": "icon\/icon.png", "48": "icon\/icon.png", "128": "icon\/icon.png" }, "background": { "scripts": [ "background\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/script.google.com\/*" ], "js": [ "libs\/jquery.min.js", "gasToggle.js" ], "all_frames": true, "run_at": "document_end" } ], "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "gasToggle.js", "content\/toggleBar.html", "content\/alert.html" ], "permissions": [ "https:\/\/script.google.com\/*", "declarativeContent" ] } |