Image extraction

Displays a list of the images used on the website.

ما هو Image extraction؟

Image extraction هو إضافة Chrome تم تطويرها بواسطة sato.magicword، والميزة الرئيسية لها هي "Displays a list of the images used on the website.".

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

screenshot

تحميل ملف CRX للإضافة Image extraction

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

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

                        Displays a list of the images used on the website.
The images loaded with "" or "css:background" are the target of the list.

ウェブサイトで使用されている画像のリストを表示します。
「」または「css:background」で読み込まれた画像が対象です。
ウェブ上の画像を保存するのに最適です。                    

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

الاسم Image extraction Image extraction
ID ceopbbecmahcocdoeadpakgmhmgjhaae
عنوان URL الرسمي https://chrome.google.com/webstore/detail/image-extraction/ceopbbecmahcocdoeadpakgmhmgjhaae
الوصف Displays a list of the images used on the website.
حجم الملف 8.81 KB
عدد التثبيتات 117
النسخة الحالية 1.0.00.0000
آخر تحديث 2020-05-19
تاريخ النشر 2020-05-19
المطور sato.magicword
نوع الدفع free
موقع الإضافة https://kaminarimagazine.com/
اللغات المدعومة ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image extraction",
    "description": "Displays a list of the images used on the website.",
    "short_name": "Img ex",
    "version": "1.0.00.0000",
    "author": "Shinji Sato",
    "homepage_url": "https:\/\/kaminarimagazine.com\/",
    "icons": {
        "16": "image\/icon-16x16.png",
        "48": "image\/icon-48x48.png",
        "128": "image\/icon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "image\/icon-19x19.png"
        },
        "default_title": "Image List"
    },
    "permissions": [
        "tabs",
        "background",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}