Zoom Fit Google Documents
This extension automatically zoom fits any opened Google document.
Что такое Zoom Fit Google Documents?
Zoom Fit Google Documents - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension automatically zoom fits any opened Google document.".
Скачать файл CRX расширения Zoom Fit Google Documents
Скачайте файлы расширений Zoom Fit Google Documents в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
| Название | |
| ID | kmlpcppfjdeglaelfnnapihcgmnajlbg |
| Официальный URL | https://chromewebstore.google.com/detail/zoom-fit-google-documents/kmlpcppfjdeglaelfnnapihcgmnajlbg |
| Описание | This extension automatically zoom fits any opened Google document. |
| Размер файла | 48.72 KB |
| Количество установок | 20 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2017-12-05 |
| Дата публикации | 2017-12-05 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | Unknown |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/glaza/ZoomFitGoogleDocs |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Zoom Fit Google Documents",
"description": "This extension automatically zoom fits any opened Google document.",
"version": "1.1",
"icons": {
"128": "icon.png"
},
"permissions": [
"tabs",
"https:\/\/docs.google.com\/document\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/document\/*"
],
"js": [
"jquery.js",
"jquery.simulate.js",
"zoomfit.js"
]
}
]
} | |