ImgSrc-er

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

Cos'è ImgSrc-er?

ImgSrc-er è un'estensione di Chrome sviluppata da https://scriptable-assets.page, e la sua funzione principale è "Convert selected image link URL into an HTML tag with src attribute on the clipboard.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ImgSrc-er

Scarica i file di estensione ImgSrc-er in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome ImgSrc-er ImgSrc-er
ID mmalpdcdmbloijpgoagaeallfnmioika
URL Ufficiale https://chromewebstore.google.com/detail/imgsrc-er/mmalpdcdmbloijpgoagaeallfnmioika
Descrizione Convert selected image link URL into an HTML tag with src attribute on the clipboard.
Dimensione del File 12.12 KB
Conteggio Installazioni 89
Versione Corrente 2.1.1
Ultimo Aggiornamento 2024-01-29
Data di Pubblicazione 2020-10-07
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://scriptable-assets.page
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/
URL della Pagina di Aiuto https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/#source-code
URL della Pagina della Politica sulla Privacy https://www.scriptable-assets.page/privacy-policy
Lingue Supportate 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
}