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은(는) breadleyyost7y에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple extension to make it quicker to create new Google drive documents. This Chrome Extension is not affiliated with Google, Inc."입니다.

확장 프로그램 스크린샷

screenshot

Quick Create for Google Drive 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}