ImgSrc-er

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

Was ist ImgSrc-er?

ImgSrc-er ist eine Chrome-Erweiterung, die von https://scriptable-assets.page entwickelt wurde, und ihr Hauptmerkmal ist "Convert selected image link URL into an HTML tag with src attribute on the clipboard.".

Erweiterungsscreenshots

screenshot
screenshot

ImgSrc-er-Erweiterungs-CRX-Datei herunterladen

Laden Sie ImgSrc-er-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name ImgSrc-er ImgSrc-er
ID mmalpdcdmbloijpgoagaeallfnmioika
Offizielle URL https://chromewebstore.google.com/detail/imgsrc-er/mmalpdcdmbloijpgoagaeallfnmioika
Beschreibung Convert selected image link URL into an HTML tag with src attribute on the clipboard.
Dateigröße 12.12 KB
Installationsanzahl 89
Aktuelle Version 2.1.1
Letztes Update 2024-01-29
Veröffentlichungsdatum 2020-10-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://scriptable-assets.page
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/
Hilfeseite URL https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/#source-code
URL der Datenschutzrichtlinien-Seite https://www.scriptable-assets.page/privacy-policy
Unterstützte Sprachen 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
}