OmniDrive

Add support to the omnibox to search in Google Drive.

OmniDrive란 무엇입니까?

OmniDrive은(는) François Beaufort에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add support to the omnibox to search in Google Drive."입니다.

확장 프로그램 스크린샷

screenshot

OmniDrive 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Type "drive" in your omnibox, press  and look for something in your Google Drive.

Note: if you'd like this experience to be part of Google Chrome, go to http://crbug.com/143622 and star it.


------------------------------------------------

Changelog:

3.6:
- Adapt folder URL to link to personal Google Drive (thanks to MartinLichtblau)

3.5:
- Increased delay before actually asking Google Drive

3.4:
- Add delay before actually asking Google Drive

3.3:
- Suggested results for non-Google documents thanks to bkennelly

3.2:
- Added new keywords:
  + "new doc"     opens https://docs.google.com/create
  + "new sheet"   opens https://sheets.google.com/create
  + "new slide"   opens https://slides.google.com/create
  + "new drawing" opens https://drawings.google.com/create
  + "new form"    opens https://forms.google.com/create

3.1:
- Added Log in message when user is not logged in yet.

3: (chrome 29 required)

- Switched to chrome.identity to improve permission flow
- Removed permissions that were not needed anymore


2:
- Do not consume memory when it's doing nothing thanks to Event pages.
- Do not ask for Google authentication when it's not needed.

1.2.1:
- Cleaned up some code.

This extension is Open Source. For full details, go to https://code.google.com/p/omnidrive/source/list                    

확장 프로그램 기본 정보

이름 OmniDrive OmniDrive
ID gpnikbcifngfgfcgcgfahidojdpklfia
공식 URL https://chromewebstore.google.com/detail/omnidrive/gpnikbcifngfgfcgcgfahidojdpklfia
설명 Add support to the omnibox to search in Google Drive.
파일 크기 12.45 KB
설치 횟수 7,301
현재 버전 3.6
최근 업데이트 2016-04-18
출시 날짜 2016-04-18
평점 4.55/5 총 56 개의 평점
개발자 François Beaufort
결제 유형 free
확장 프로그램 웹 사이트 https://plus.google.com/100132233764003563318
도움말 페이지 URL https://plus.google.com/100132233764003563318/posts/Ut71uTieSTc
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "description": "Add support to the omnibox to search in Google Drive.",
    "name": "OmniDrive",
    "omnibox": {
        "keyword": "drive"
    },
    "icons": {
        "128": "128.png",
        "64": "64.png",
        "48": "48.png",
        "32": "32.png",
        "16": "16.png"
    },
    "oauth2": {
        "client_id": "652497263904-p1o677anrg1tu4uoo6005qb66uqht94r.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive.readonly"
        ]
    },
    "permissions": [
        "identity"
    ],
    "version": "3.6",
    "minimum_chrome_version": "29",
    "manifest_version": 2
}