Cloud File direct URL

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

Cloud File direct URL क्या है?

Cloud File direct URL Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates direct URL to your Google drive file from current tab."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Cloud File direct URL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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
}