ImgSrc-er

Convert selected image link URL into an HTML tag with src attribute on the clipboard.

ImgSrc-er란 무엇입니까?

ImgSrc-er은(는) https://scriptable-assets.page에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convert selected image link URL into an HTML tag with src attribute on the clipboard."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ImgSrc-er 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Convert selected image link URL into an HTML  tag with src attribute on the clipboard. Either an image, URL of an image, or link to an image can be selected.

For example when a text
"https://example.com/image.jpg"
is selected and this extension is executed via the context menu, the string

is save on the clipboard. You can in turn use this to edit your website or wherever you like.

The text
"https://example.com/image.jpg"
in the above example can be replaced by the image itself or a link object, i.e.,
Link to Image
in any website.

Attributes:
The icon of this Chrome extension was made by Freepik (https://www.flaticon.com/authors/freepik) from www.flaticon.com (https://www.flaticon.com/).                    

확장 프로그램 기본 정보

이름 ImgSrc-er ImgSrc-er
ID mmalpdcdmbloijpgoagaeallfnmioika
공식 URL https://chromewebstore.google.com/detail/imgsrc-er/mmalpdcdmbloijpgoagaeallfnmioika
설명 Convert selected image link URL into an HTML tag with src attribute on the clipboard.
파일 크기 12.12 KB
설치 횟수 89
현재 버전 2.1.1
최근 업데이트 2024-01-29
출시 날짜 2020-10-07
평점 5.00/5 총 1 개의 평점
개발자 https://scriptable-assets.page
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/
도움말 페이지 URL https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/#source-code
개인정보 보호 정책 페이지 URL https://www.scriptable-assets.page/privacy-policy
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "2.1.1",
    "description": "__MSG_extDescription__",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "default_locale": "en",
    "icons": {
        "16": "images\/ImgSrc-er16.png",
        "32": "images\/ImgSrc-er32.png",
        "48": "images\/ImgSrc-er48.png",
        "128": "images\/ImgSrc-er128.png"
    },
    "manifest_version": 3
}