Copy-n-Paste: Image Upload Simplified

Easily upload screenshots and images from your clipboard to webpages.

什麼是Copy-n-Paste: Image Upload Simplified?

Copy-n-Paste: Image Upload Simplified是由kazcfz開發的Chrome擴展程式,該擴展的主要功能是“Easily upload screenshots and images from your clipboard to webpages.”。

擴展截圖

screenshot
screenshot

下載Copy-n-Paste: Image Upload Simplified擴展crx文件

下載Copy-n-Paste: Image Upload Simplified擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Copy-n-Paste is a lightweight Chromium extension designed to simplify the process of uploading images from your clipboard directly to webpages, eliminating the prior need to save them as files.

🚀 Features
▪ Completely free and open source!
▪ Lightweight – Only 0.02MB!
▪ Clean & Simple GUI – 1 interface only!
▪ Screenshot upload – Simply snap and upload!
▪ Copy and Paste – Copy images online!
▪ Drag and Drop – Drag files directly from your computer!
▪ Wide cross-site compatibility – Works on popular websites (Facebook, Instagram, Twitter, YouTube, and more)!


🔐 Full Privacy
We do not collect any data or usage information.


⚙️ Update
v1.1.1
▪ Improved compatibility for even more sites
▪ Fixed overlay not appearing
▪ Fixed overlay not closing
▪ Fixed overlay appearing at top-left corner
▪ Fixed reading error

v1.1.0
▪ Added 'Drag and Drop'
▪ Added 'Copy images online'
▪ Added support for custom inputs used in popular sites
▪ Improved GUI usability and adaptability
▪ Mirror original input's accepted file types
▪ Duplicate text bug fix


🔗 GitHub
https://github.com/kazcfz/Copy-n-Paste

🚩 Report an issue
https://github.com/kazcfz/Copy-n-Paste/issues?q=is%3Aissue                    

擴展基本資訊

名稱 Copy-n-Paste: Image Upload Simplified Copy-n-Paste: Image Upload Simplified
ID bnmdedmhngbeofnafobjmcihealecgnf
官方網址 https://chromewebstore.google.com/detail/copy-n-paste-image-upload/bnmdedmhngbeofnafobjmcihealecgnf
簡介 Easily upload screenshots and images from your clipboard to webpages.
檔案大小 17.7 KB
安裝次數 55
目前版本 1.1.1
更新時間 2024-02-07
上架時間 2024-02-04
評分 5.00/5 共 7 次評分
開發者 kazcfz
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/kazcfz/Copy-n-Paste
說明頁面URL https://github.com/kazcfz/Copy-n-Paste/issues?q=is%3Aissue
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy-n-Paste: Image Upload Simplified",
    "version": "1.1.1",
    "description": "Easily upload screenshots and images from your clipboard to webpages.",
    "action": [],
    "icons": {
        "16": ".\/icons\/icon16.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    },
    "permissions": [
        "clipboardRead"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/steamcommunity.com\/id\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "overlay.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}