Image Data

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

Image Data란 무엇입니까?

Image Data은(는) cubeleco에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show image resolution, file type, and file size on mouse over"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Image Data 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}