Cloud File direct URL

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

Cloud File direct URLคืออะไร?

Cloud File direct URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Creates direct URL to your Google drive file from current tab."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cloud File direct URL

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
}