ImgSrc-er

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

Qu'est-ce que ImgSrc-er ?

ImgSrc-er est une extension Chrome développée par https://scriptable-assets.page, et sa fonction principale est "Convert selected image link URL into an HTML tag with src attribute on the clipboard.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension ImgSrc-er

Téléchargez les fichiers d'extension ImgSrc-er au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom ImgSrc-er ImgSrc-er
ID mmalpdcdmbloijpgoagaeallfnmioika
URL Officiel https://chromewebstore.google.com/detail/imgsrc-er/mmalpdcdmbloijpgoagaeallfnmioika
Description Convert selected image link URL into an HTML tag with src attribute on the clipboard.
Taille du Fichier 12.12 KB
Nombre d'Installations 89
Version Actuelle 2.1.1
Dernière Mise à Jour 2024-01-29
Date de Publication 2020-10-07
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://scriptable-assets.page
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/
URL de la Page d'Aide https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/#source-code
URL de la Page de Politique de Confidentialité https://www.scriptable-assets.page/privacy-policy
Langues Prises en Charge 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
}