Download Anyimage

Download any image, even on Instagram.com

Download Anyimageคืออะไร?

Download Anyimage เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hieu Pham และคุณลักษณะหลักของมันคือ "Download any image, even on Instagram.com"

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

screenshot
screenshot

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

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

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

                        #EVEN ON INSTAGRAM.COM!

INTRODUCTION
As the name might suggest, you can download any image you see on a webpage with this extension.

USAGE
1. Add this extension to your Chrome.
2. Surf the web.
3. Right click on any image you want to download to see the new context menu item labeled "Download this!".
4. Choose the destination folder to save the image file.

HOW IT WORKS
Let's talk technical,
When you right click on an image, this extension will check if the target element is an actual  tag or an image hidden under a 
(think about Instagram web...), get the correct url for your image and open the download dialog as usual.

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

ชื่อ Download Anyimage Download Anyimage
ID phpkkaohonlmmecnelnlkcipjcoipfkb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/download-anyimage/phpkkaohonlmmecnelnlkcipjcoipfkb
คำอธิบาย Download any image, even on Instagram.com
ขนาดไฟล์ 127 KB
จำนวนการติดตั้ง 101
เวอร์ชันปัจจุบัน 0.1.3
อัปเดตครั้งล่าสุด 2018-09-08
วันที่เผยแพร่ 2018-09-08
ผู้พัฒนา Hieu Pham
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Download Anyimage",
    "short_name": "Download Anyimage",
    "description": "Download any image, even on Instagram.com",
    "version": "0.1.3",
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/vendor\/hot-reload.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "browser_action": {
        "default_title": "Download Anyimage"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/vendor\/base64.js",
                "js\/vendor\/FileSaver.min.js",
                "js\/vendor\/jquery-2.2.4.min.js",
                "js\/tracking.service.js",
                "js\/helper.js",
                "js\/content.js"
            ],
            "css": [
                "css\/app.css"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "contextMenus",
        "downloads"
    ],
    "web_accessible_resources": [
        "css\/app.css",
        "tpl\/app.html"
    ]
}