Quick Create for Google Drive

Simple extension to make it quicker to create new Google drive documents. This Chrome Extension is not affiliated with Google, Inc.

Что такое Quick Create for Google Drive?

Quick Create for Google Drive - это расширение Chrome, разработанное breadleyyost7y, и его основная функция - "Simple extension to make it quicker to create new Google drive documents. This Chrome Extension is not affiliated with Google, Inc.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Quick Create for Google Drive

Скачайте файлы расширений Quick Create for Google Drive в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Quickly create new Google documents, spreadsheets, forms, presentations and drawings. Supports multiple Google accounts through the options as well as shortcuts to custom templates.

The extension is changing the new tab.                    

Основная информация о расширении

Название Quick Create for Google Drive Quick Create for Google Drive
ID ckcbfnpodigdcbjjmhmolhkhlfbepnca
Официальный URL https://chrome.google.com/webstore/detail/quick-create-for-google-d/ckcbfnpodigdcbjjmhmolhkhlfbepnca
Описание Simple extension to make it quicker to create new Google drive documents. This Chrome Extension is not affiliated with Google, Inc.
Размер файла 47.8 KB
Количество установок 33,964
Текущая Версия 3.3
Последнее Обновление 2020-02-05
Дата публикации 2020-02-04
Рейтинг 4.01/5 Всего 148 оценок
Разработчик breadleyyost7y
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://sites.google.com/view/quick-create-for-g-drive/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.min.js",
                "js\/content_script.js"
            ],
            "matches": [
                "https:\/\/drive.google.com\/*usetemplate?id=*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "Simple extension to make it quicker to create new Google drive documents. This Chrome Extension is not affiliated with Google, Inc.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "name": "Quick Create for Google Drive",
    "options_page": "options.html",
    "short_name": "Quick Create for Drive",
    "version": "3.3",
    "chrome_url_overrides": {
        "newtab": "nt.html"
    }
}