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文件

下載ImgSrc-er擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}