Show and Copy Image Properties

You can see the properties of the image and copy them to the clipboard easily.

Show and Copy Image Properties란 무엇입니까?

Show and Copy Image Properties은(는) Mustafa KÜÇÜK에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "You can see the properties of the image and copy them to the clipboard easily."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Show and Copy Image Properties 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You can see the properties of the image and copy them to the clipboard easily.

Compatible with SVG code and all image extensions (png, svg, jpeg)

You can see some properties of related image if hover over any image or icon.

You can see these properties:

- URL
- Name
- Width, Height 
- Class, Alt

Note: Extension will be disable when first installed you can enable click the extension icon. So you can disable the extension instead of remove while not using.

When you disable the extension by clicking the icon, you cannot see the details when you hover over any image or icon.                    

확장 프로그램 기본 정보

이름 Show and Copy Image Properties Show and Copy Image Properties
ID eaploabmglgipkcebcdbaibdghlhgjab
공식 URL https://chromewebstore.google.com/detail/show-and-copy-image-prope/eaploabmglgipkcebcdbaibdghlhgjab
설명 You can see the properties of the image and copy them to the clipboard easily.
파일 크기 30.46 KB
설치 횟수 123
현재 버전 1.0.1
최근 업데이트 2022-03-15
출시 날짜 2022-03-15
평점 5.00/5 총 3 개의 평점
개발자 Mustafa KÜÇÜK
이메일 [email protected]
결제 유형 free
지원되는 언어 de,en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.1",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icons\/16.png",
        "128": "assets\/icons\/128.png"
    },
    "background": {
        "service_worker": "assets\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "assets\/js\/popperjs.js",
                "assets\/js\/tippy.js",
                "assets\/js\/inject.js"
            ],
            "css": [
                "assets\/css\/app.css"
            ]
        }
    ],
    "action": [],
    "permissions": [
        "storage",
        "activeTab"
    ]
}