Cloud File direct URL

Creates direct URL to your Google drive file from current tab.

Was ist Cloud File direct URL?

Cloud File direct URL ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Creates direct URL to your Google drive file from current tab.".

Erweiterungsscreenshots

screenshot

Cloud File direct URL-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cloud File direct URL-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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).                    

Grundlegende Informationen zur Erweiterung

Name Cloud File direct URL Cloud File direct URL
ID ollcbgopdclnjaggekgnlmgbbgohgamo
Offizielle URL https://chromewebstore.google.com/detail/cloud-file-direct-url/ollcbgopdclnjaggekgnlmgbbgohgamo
Beschreibung Creates direct URL to your Google drive file from current tab.
Dateigröße 15 KB
Installationsanzahl 443
Aktuelle Version 1.1
Letztes Update 2017-06-10
Veröffentlichungsdatum 2017-06-10
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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
}