Upload image from URL

Upload images & files directly from a URL, without needing to have them on your computer!

Upload image from URLคืออะไร?

Upload image from URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย goodthingscming และคุณลักษณะหลักของมันคือ "Upload images & files directly from a URL, without needing to have them on your computer!"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Upload image from URL

ดาวน์โหลดไฟล์ส่วนขยาย Upload image from URL ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will let you "fill" a file input directly from a remote URL. Normally, if you want to upload an image (or other file) from a URL, you first have to download it to your computer, then upload it, and then delete it from your computer. 
With this extension, all you have to do is enter the URL of the file, and the extension will automatically upload it into the page for you.

You can use this extension to post an image on Facebook or Twitter, upload files to your Cloud storage, share a meme on 9gag or anywhere else you upload files.

This is not a good tool for uploading large files. It first reads the entire file into your computer's RAM, and then uploads it into the page. Especially video files will just be too large for it to handle. This is meant more so for images and small files.

Chrome hides extensions by default after you install them. If the extension icon "disappeared", go to extensions menu by clicking on the puzzle icon in your extensions toolbar, and then pin this extension to the toolbar. You can also use this extension with the Ctrl + Shift + U key combination, even when it's not in the 'pinned' state.

Credits
Icons sourced from www.flaticon.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Upload image from URL Upload image from URL
ID eiglgndkjiabiepkliiemoabepkkhacb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/upload-image-from-url/eiglgndkjiabiepkliiemoabepkkhacb
คำอธิบาย Upload images & files directly from a URL, without needing to have them on your computer!
ขนาดไฟล์ 157 KB
จำนวนการติดตั้ง 1,047
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2021-01-03
วันที่เผยแพร่ 2020-06-27
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา goodthingscming
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://www.freelancer-helper.com/privacy-policy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Upload images & files directly from a URL, without needing to have them on your computer!",
    "version": "1.2.1",
    "name": "Upload image from URL",
    "permissions": [
        ""
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "public\/icon.png"
    },
    "icons": {
        "128": "public\/icon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        }
    },
    "web_accessible_resources": [
        "public\/**\/*.png",
        "public\/**\/*.jpg",
        "public\/*.woff2"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}