ImgSrc-er

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

¿Qué es ImgSrc-er?

ImgSrc-er es una extensión de Chrome desarrollada por https://scriptable-assets.page, y su función principal es "Convert selected image link URL into an HTML tag with src attribute on the clipboard.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión ImgSrc-er

Descarga archivos de extensión ImgSrc-er en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre ImgSrc-er ImgSrc-er
ID mmalpdcdmbloijpgoagaeallfnmioika
URL Oficial https://chromewebstore.google.com/detail/imgsrc-er/mmalpdcdmbloijpgoagaeallfnmioika
Descripción Convert selected image link URL into an HTML tag with src attribute on the clipboard.
Tamaño del Archivo 12.12 KB
Cantidad de Instalaciones 89
Versión Actual 2.1.1
Última Actualización 2024-01-29
Fecha de Publicación 2020-10-07
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://scriptable-assets.page
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/
URL de la Página de Ayuda https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/#source-code
URL de la Página de Política de Privacidad https://www.scriptable-assets.page/privacy-policy
Idiomas Soportados 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
}