Image Upscaler

Upscale an image using artificial intelligence or a native HTML5 engine in your browser!

Image Upscalerคืออะไร?

Image Upscaler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lynn และคุณลักษณะหลักของมันคือ "Upscale an image using artificial intelligence or a native HTML5 engine in your browser!"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image Upscaler

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

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

                        Image Upscaler is an extension that enables you to upscale an image inside your browser.

It uses three different techniques to upscale the input image. The first (and the default) method is using the HTML5 Canvas API to upscale the images up to 10 times the original size. The Canvas API has a built-in interpolation method for pixel smoothing. The final result with the HTML5 method is somehow satisfactory but lacks some details and may not be sharp enough. Two other methods use artificial intelligence for upscaling. The first AI is client-side and uses UpscalerJS (https://github.com/thekevinscott/UpscalerJS) & TensorFlow (https://github.com/tensorflow/tfjs) libraries. The second AI is server-side and uses the ClipDrop API (https://clipdrop.co/apis/docs/super-resolution). Please read the privacy policy for this addon here (https://mybrowseraddon.com/privacy-policy/image-upscaler.html).

Note 1: for the canvas method (default engine), the maximum upscale factor is 10x, for the client-side AI it is 8x, and server-side 4x. 

Note 2: for both AI methods, it is recommended to use small images as the upscaling process with artificial intelligence is computationally expensive. In server-side AI, an API key is needed; please read the instruction within the extension on how to get the API key.

If you have a feature request or found a bug to report, please fill out the bug report form on the addon homepage (https://mybrowseraddon.com/image-upscaler.html).                    

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

ชื่อ Image Upscaler Image Upscaler
ID gmlpefcldkdncjphjmojnakmphpcjemm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/image-upscaler/gmlpefcldkdncjphjmojnakmphpcjemm
คำอธิบาย Upscale an image using artificial intelligence or a native HTML5 engine in your browser!
ขนาดไฟล์ 117 MB
จำนวนการติดตั้ง 1,380
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2023-07-13
วันที่เผยแพร่ 2023-02-22
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Lynn
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/image-upscaler.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/image-upscaler.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.1",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Image Upscaler",
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/image-upscaler.html",
    "description": "Upscale an image using artificial intelligence or a native HTML5 engine in your browser!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "sandbox": {
        "pages": [
            "data\/interface\/index.html"
        ]
    },
    "action": {
        "default_title": "Image Upscaler",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}