image-downloader

A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.

image-downloaderคืออะไร?

image-downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย joshua.lin870903 และคุณลักษณะหลักของมันคือ "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย image-downloader

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

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

                        This addon provides an additional context menu. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened.


Other Features:

Prefix feature - to add prefix to the filename while downloading. Users can customize their prefix list in the "Preference" page.

Twitter credit feature - to automatically detect the username of the Twitter post and add it to the filename when downloading images.


Go to "Homepage" for more detail about this addon.                    

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

ชื่อ image-downloader image-downloader
ID dfddfklkbahiihjnfmpflfblacfjojjl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl
คำอธิบาย A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
ขนาดไฟล์ 20.77 KB
จำนวนการติดตั้ง 39
เวอร์ชันปัจจุบัน 0.2.11
อัปเดตครั้งล่าสุด 2019-09-10
วันที่เผยแพร่ 2019-09-10
ผู้พัฒนา joshua.lin870903
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/JoshuaLin0903/image-downloader
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "image-downloader",
    "description": "A webextension to make opening\/downloading original(higher quaitiy) images and images organization easier.",
    "version": "0.2.11",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "downloads",
        "storage",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/menu_info.js"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "settings\/options.html"
    }
}