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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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:\/\/*\/*"
    ]
}