ImgSrc-er

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

ما هو ImgSrc-er؟

ImgSrc-er هو إضافة Chrome تم تطويرها بواسطة https://scriptable-assets.page، والميزة الرئيسية لها هي "Convert selected image link URL into an HTML tag with src attribute on the clipboard.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة ImgSrc-er

قم بتنزيل ملفات الامتداد ImgSrc-er بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم ImgSrc-er ImgSrc-er
ID mmalpdcdmbloijpgoagaeallfnmioika
عنوان URL الرسمي https://chromewebstore.google.com/detail/imgsrc-er/mmalpdcdmbloijpgoagaeallfnmioika
الوصف Convert selected image link URL into an HTML tag with src attribute on the clipboard.
حجم الملف 12.12 KB
عدد التثبيتات 89
النسخة الحالية 2.1.1
آخر تحديث 2024-01-29
تاريخ النشر 2020-10-07
تقييم 5.00/5 مجموع تقييمات 1
المطور https://scriptable-assets.page
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/
عنوان صفحة المساعدة https://www.scriptable-assets.page/chrome-extensions/imgsrc-er/#source-code
عنوان صفحة سياسة الخصوصية https://www.scriptable-assets.page/privacy-policy
اللغات المدعومة 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
}