Cloud File direct URL

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

什麼是Cloud File direct URL?

Cloud File direct URL是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Creates direct URL to your Google drive file from current tab.”。

擴展截圖

screenshot

下載Cloud File direct URL擴展crx文件

下載Cloud File direct URL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Cloud File direct URL Cloud File direct URL
ID ollcbgopdclnjaggekgnlmgbbgohgamo
官方網址 https://chromewebstore.google.com/detail/cloud-file-direct-url/ollcbgopdclnjaggekgnlmgbbgohgamo
簡介 Creates direct URL to your Google drive file from current tab.
檔案大小 15 KB
安裝次數 443
目前版本 1.1
更新時間 2017-06-10
上架時間 2017-06-10
開發者 Unknown
付費類型 free
支援的語言 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
}