Image-Toolbar

Shows a customizable toolbar on images. The contained buttons can perform actions like downloading an image to a custom path.

Image-Toolbarคืออะไร?

Image-Toolbar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ht0.de และคุณลักษณะหลักของมันคือ "Shows a customizable toolbar on images. The contained buttons can perform actions like downloading an image to a custom path."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Update 07.02.2020: With version 2.0.0.2 the problem occurring on Chrome 80 should be resolved.


Image-Toolbar shows a customizable toolbar if you move your mouse over an image. The contained buttons can perform various actions like saving an image to a custom path. You can customize the buttons and create new Save-Buttons on the options page. Beside the user-definable Save-Buttons there are some pre-defined buttons (namely "Bring to front", "Open as new tab", "Hide toolbar") that cannot be deleted, but you can disable them if you don't want them to show up in the toolbar. With later updates other button types will be added, like a button to show information about the image.

Please read https://ht0.de/image-toolbar.html for a short introduction of the extension and all the settings on the options page.

Right after the installation the options page and an introduction website will be opened. Please look at them and play with the settings. Hopefully I wrote them understandable, but if not and you have questions, suggestions, found bugs/problems or want to buy me a beer, you can mail me at [email protected] and I will try to answer quickly.

# Contact
Mail: [email protected]
Website: https://ht0.de                    

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

ชื่อ Image-Toolbar Image-Toolbar
ID cpgaepnhfockgofcejphihfafgmenofb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/image-toolbar/cpgaepnhfockgofcejphihfafgmenofb
คำอธิบาย Shows a customizable toolbar on images. The contained buttons can perform actions like downloading an image to a custom path.
ขนาดไฟล์ 27.61 KB
จำนวนการติดตั้ง 14,855
เวอร์ชันปัจจุบัน 2.0.0.2
อัปเดตครั้งล่าสุด 2020-02-11
วันที่เผยแพร่ 2020-02-11
คะแนน 3.93/5 รวมทั้งหมด 153 คะแนน
ผู้พัฒนา https://ht0.de
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ht0.de/image-toolbar.html
URL หน้าช่วยเหลือ https://ht0.de/image-toolbar.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image-Toolbar",
    "version": "2.0.0.2",
    "description": "Shows a customizable toolbar on images. The contained buttons can perform actions like downloading an image to a custom path.",
    "icons": {
        "48": "i48.png",
        "128": "i128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "i19-0.png"
        }
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "homepage_url": "http:\/\/heithe.com\/project-image-toolbar.html",
    "options_ui": {
        "page": "options0.html",
        "chrome_style": false
    },
    "permissions": [
        "storage",
        "downloads",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "contentscript.css",
        "i19-0.png",
        "i19-1.png",
        "i19-2.png",
        "save_16.png",
        "top_16.png",
        "cross_16.png",
        "tab_16.png"
    ]
}