ImgSrc-er

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

ImgSrc-er là gì?

ImgSrc-er là một tiện ích mở rộng Chrome được phát triển bởi https://scriptable-assets.page, và tính năng chính của nó là "Convert selected image link URL into an HTML tag with src attribute on the clipboard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ImgSrc-er

Tải xuống các tệp mở rộng ImgSrc-er dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ImgSrc-er ImgSrc-er
ID mmalpdcdmbloijpgoagaeallfnmioika
URL Chính Thức https://chromewebstore.google.com/detail/imgsrc-er/mmalpdcdmbloijpgoagaeallfnmioika
Mô tả Convert selected image link URL into an HTML tag with src attribute on the clipboard.
Kích Thước Tệp 12.12 KB
Số Lần Cài Đặt 89
Phiên Bản Hiện Tại 2.1.1
Cập Nhật Lần Cuối 2024-01-29
Ngày Phát Hành 2020-10-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://scriptable-assets.page
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/
URL Trang Trợ Giúp https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/#source-code
URL Trang Chính Sách Bảo Mật https://www.scriptable-assets.page/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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
}