Cloud File direct URL
Creates direct URL to your Google drive file from current tab.
¿Qué es Cloud File direct URL?
Cloud File direct URL es una extensión de Chrome desarrollada por Unknown, y su función principal es "Creates direct URL to your Google drive file from current tab.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Cloud File direct URL
Descarga archivos de extensión Cloud File direct URL en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
TL;DR: This will give you direct link to Google Drive file. I often found my self in situation where I need to embed a screenshot from Google Drive, but the Drive would only give me the website URL where I can view the file not the direct link to it. This is especially usefull for embeding screenshots in pullrequests (github) or chatting (Flowdock, Slack, Skype).
Información Básica de la Extensión
Nombre | Cloud File direct URL |
ID | ollcbgopdclnjaggekgnlmgbbgohgamo |
URL Oficial | https://chromewebstore.google.com/detail/cloud-file-direct-url/ollcbgopdclnjaggekgnlmgbbgohgamo |
Descripción | Creates direct URL to your Google drive file from current tab. |
Tamaño del Archivo | 15 KB |
Cantidad de Instalaciones | 443 |
Versión Actual | 1.1 |
Última Actualización | 2017-06-10 |
Fecha de Publicación | 2017-06-10 |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cloud File direct URL", "version": "1.1", "author": "Viesturs Teiv\u0101ns", "description": "Creates direct URL to your Google drive file from current tab.", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "cloud-link-32.png", "default_title": "Get direct URL!", "default_popup": "popup.html" }, "permissions": [ "declarativeContent", "activeTab" ], "icons": { "32": "cloud-link-32.png", "48": "cloud-link-48.png", "128": "cloud-link-128.png" }, "manifest_version": 2 } |