OmniDrive
Add support to the omnibox to search in Google Drive.
OmniDrive क्या है?
OmniDrive François Beaufort द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add support to the omnibox to search in Google Drive."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में OmniDrive एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Type "drive" in your omnibox, pressand 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 |
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 } |