Album

Builds a list with the images present on the current page and exports it as text, mosaic or carousel.

Albumคืออะไร?

Album เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Francesc Busquets และคุณลักษณะหลักของมันคือ "Builds a list with the images present on the current page and exports it as text, mosaic or carousel."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension detects the images on the current page and shows them in a list that can be exported in three different formats:

- A simple list of absolute URLs pointing at the images.

- An HTML snippet with "img" tags forming a mosaic. Images can also export their original links.

- An HTML snippet that creates a carousel of images powered by Galleria.io (http://galleria.io)

In all cases, the data is copied into the clipboard and can be inserted into any text editor by pressing [Ctrl+V]. Mosaic and carousel snippets can be inserted into documents, blog posts, virtual learning environments and any other application based on HTML content. Before pasting the code into a rich-text editor, be sure to set it in "plain text" mode (usually represented by a button with the symbols "<>" or "html").

This is a free software project. You can contribute to improving this browser extension by reporting issues, translating it to a different language or sending pull requests to https://github.com/projectestac/album. Thanks in advance!

Special thanks to the excellent work done by galleria.io (http://galleria.io), the open source engine beneath the image carousel. In addition to the basic free theme used by Album, they provide also with other nice and featured themes at cheap prices.

Note that Album does not copy images nor any type of files: it just deals with URLs pointing at remote resources. Issues with the images (slow loading, file not found...) are often related to problems with the origin of the images.                    

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

ชื่อ Album Album
ID obknigmaekkacdkckfeegcfiefdaeked
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/album/obknigmaekkacdkckfeegcfiefdaeked
คำอธิบาย Builds a list with the images present on the current page and exports it as text, mosaic or carousel.
ขนาดไฟล์ 70.24 KB
จำนวนการติดตั้ง 3,309
เวอร์ชันปัจจุบัน 2.0.5
อัปเดตครั้งล่าสุด 2023-06-06
วันที่เผยแพร่ 2019-06-05
คะแนน 4.79/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Francesc Busquets
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://projectestac.github.io/album
URL หน้าช่วยเหลือ https://github.com/projectestac/album/issues
ภาษาที่รองรับ en,ca,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.0.5",
    "default_locale": "en",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "description": "__MSG_extDescription__",
    "action": {
        "default_popup": ".\/popup\/index.html",
        "default_title": "Album",
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "38": "icons\/icon38.png",
            "48": "icons\/icon48.png"
        }
    },
    "background": {
        "service_worker": ".\/sw\/background.js",
        "type": "module"
    },
    "permissions": [
        "activeTab",
        "notifications",
        "storage",
        "scripting"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "192": "icons\/icon192.png"
    }
}