Image Data

Show image resolution, file type, and file size on mouse over

Image Dataคืออะไร?

Image Data เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cubeleco และคุณลักษณะหลักของมันคือ "Show image resolution, file type, and file size on mouse over"

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

screenshot
screenshot
screenshot

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

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

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

                        Features:
- Display an image's: resolution, scaled resolution, file name, file type, file size, alt text, mime type, domain, pixel total, modification date
- Works with images on a webpage, in a new tab, and even local files
- 6 position settings: over, before, or after the image, fixed, follow cursor, or tool tip
- Keyboard shortcuts and toolbar button to easily enable or disable the add-on
- Display of data fully customizable with CSS

Permission: Access your data for all websites - Used to read and display image data on a web page.                    

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

ชื่อ Image Data Image Data
ID flongcohgnjdaopgebimagfmcaepbopn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/image-data/flongcohgnjdaopgebimagfmcaepbopn
คำอธิบาย Show image resolution, file type, and file size on mouse over
ขนาดไฟล์ 19.66 KB
จำนวนการติดตั้ง 410
เวอร์ชันปัจจุบัน 2.6.2
อัปเดตครั้งล่าสุด 2023-03-23
วันที่เผยแพร่ 2020-05-21
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา cubeleco
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cubeleco/imageData
URL หน้าช่วยเหลือ https://github.com/cubeleco/imageData/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Image Data",
    "version": "2.6.2",
    "description": "Show image resolution, file type, and file size on mouse over",
    "browser_specific_settings": {
        "gecko": {
            "id": "{b8ecb56e-f778-4df4-962a-52974b36abdd}",
            "strict_min_version": "48.0"
        }
    },
    "action": {
        "default_icon": {
            "48": "icons\/thumb-48.png"
        }
    },
    "icons": {
        "48": "icons\/thumb-48.png"
    },
    "commands": {
        "_execute_action": {
            "description": "Toggle Display"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "defaults.js",
                "imgdata.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage"
    ]
}