FIFU Scraper

Extract image addresses from a web page. You just filter by properties, select the images and its URLs are saved on clipboard.

FIFU Scraperคืออะไร?

FIFU Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://featuredimagefromurl.com และคุณลักษณะหลักของมันคือ "Extract image addresses from a web page. You just filter by properties, select the images and its URLs are saved on clipboard."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FIFU Scraper

ดาวน์โหลดไฟล์ส่วนขยาย FIFU Scraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This is how FIFU Scraper works:
1) you access a web page;
2) click on FIFU Scraper button (Ctrl+Shift+S);
3) the extension searches for images;
4) the images are shown in a pop-up;
5) you select only the images you want;
6) the image URLs, delimited by "|", are copied on clipboard;
7) you paste that anywhere (Ctrl+V).

For WordPress + WooCommerce + Featured Image from URL users:
8) access product editor;
9) use a shortcut (Ctrl+Shift+X);
- the 1st image URL will be pasted into Product Image from URL field;
- the other URLs will be pasted into Image Gallery from URL fields.

For WordPress + Featured Image from URL users:
8) access post editor;
9) use a shortcut (Ctrl+Shift+X);
- if you have 1 image URL, it will be pasted into Featured Image from URL field;
- if you have many image URLs, they will be pasted into Featured Slider from URL fields.

Options:
a) og:image: reads image URLs from metadata;
b) img: reads image URLs from HTML tags;
c) backgound-image: reads image URLs from CSS;
d) min-width: filters pop-up images by width;
e) min-height: filters pop-up images by height.

Support:
- please report any problem to [email protected]
- suggestions for improvements are welcome!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FIFU Scraper FIFU Scraper
ID pccimcccbkdeeadhejdmnffmllpicola
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fifu-scraper/pccimcccbkdeeadhejdmnffmllpicola
คำอธิบาย Extract image addresses from a web page. You just filter by properties, select the images and its URLs are saved on clipboard.
ขนาดไฟล์ 165 KB
จำนวนการติดตั้ง 692
เวอร์ชันปัจจุบัน 1.02
อัปเดตครั้งล่าสุด 2020-02-14
วันที่เผยแพร่ 2020-02-14
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://featuredimagefromurl.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://fifu.app
URL หน้าช่วยเหลือ https://fifu.app
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FIFU Scraper",
    "version": "1.02",
    "description": "Extract image addresses from a web page. You just filter by properties, select the images and its URLs are saved on clipboard.",
    "icons": {
        "16": "img\/icon-16x16.png",
        "32": "img\/icon-32x32.png",
        "48": "img\/icon-48x48.png",
        "64": "img\/icon-64x64.png",
        "128": "img\/icon-128x128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "name": "FIFU Scraper",
        "default_icon": {
            "16": "img\/icon-16x16.png",
            "32": "img\/icon-32x32.png",
            "48": "img\/icon-48x48.png",
            "64": "img\/icon-64x64.png",
            "128": "img\/icon-128x128.png"
        },
        "default_popup": "html\/popup.html"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-3.4.1.min.js",
                "js\/bootstrap.min.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+S",
                "chromeos": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S"
            }
        },
        "featured_image_from_url": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Paste the URLs into Featured Image from URL (WordPress plugin) fields."
        }
    }
}