ImgSrc-er

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

Hvad er ImgSrc-er?

ImgSrc-er er en Chrome-udvidelse udviklet af https://scriptable-assets.page, og dens hovedfunktion er "Convert selected image link URL into an HTML tag with src attribute on the clipboard.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download ImgSrc-er-udvidelses-CRX-fil

Download ImgSrc-er-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn ImgSrc-er ImgSrc-er
ID mmalpdcdmbloijpgoagaeallfnmioika
Officiel URL https://chromewebstore.google.com/detail/imgsrc-er/mmalpdcdmbloijpgoagaeallfnmioika
Beskrivelse Convert selected image link URL into an HTML tag with src attribute on the clipboard.
Filstørrelse 12.12 KB
Antal Installationer 89
Nuværende Version 2.1.1
Senest Opdateret 2024-01-29
Udgivelsesdato 2020-10-07
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://scriptable-assets.page
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/
Hjælpeside-URL https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/#source-code
URL til Fortrolighedspolitik Side https://www.scriptable-assets.page/privacy-policy
Understøttede Sprog 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
}