Quick moodboards

Make moodboards quickly by collecting images through the browser contextual menu

Quick moodboardsคืออะไร?

Quick moodboards เป็นส่วนขยายของ Chrome ที่พัฒนาโดย esroyo และคุณลักษณะหลักของมันคือ "Make moodboards quickly by collecting images through the browser contextual menu"

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

screenshot
screenshot

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

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

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

                        "A mood board is a type of visual presentation or a collage consisting of images, text, and samples of objects in a composition. It can be based upon a set topic or can be any material chosen at random. A mood board can be used to convey a general idea or feeling about a particular topic. They may be physical or digital, and can be effective presentation tools." [1]

The extension adds a new option in the browser contextual menu to "Add an image to a moodboard". That option appears when you right click anywhere on a website. The first time you must "Add it to a new moodboard" and introduce a name for it. Latter on you may add the image to an existing moodboard or create a new one. If no image was found in the exact position where you right clicked, nothing will happen.

The "Quick moodboards" button on the main browser toolbar will open the moodboards. That view is still quite limited. Use the first icon (top left) to select the visible moodboard. You can move images around freely. Click an image to bring it to the front and press `delete` key while it is selected to remove it. Moodboards are saved automatically. Notice there is no do/undo functionality.

[1] https://en.wikipedia.org/wiki/Mood_board                    

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

ชื่อ Quick moodboards Quick moodboards
ID gpenmhgbjlncefmpebmegignbjpjknek
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-moodboards/gpenmhgbjlncefmpebmegignbjpjknek
คำอธิบาย Make moodboards quickly by collecting images through the browser contextual menu
ขนาดไฟล์ 273 KB
จำนวนการติดตั้ง 475
เวอร์ชันปัจจุบัน 0.3.6
อัปเดตครั้งล่าสุด 2020-04-02
วันที่เผยแพร่ 2020-04-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา esroyo
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitlab.expoteca.com/esroyo/quick-moodboards#readme
URL หน้าช่วยเหลือ https://gitlab.expoteca.com/esroyo/quick-moodboards/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick moodboards",
    "description": "Make moodboards quickly by collecting images through the browser contextual menu",
    "author": "Carmela Fores, Carles Escrig ",
    "version": "0.3.6",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "63.0"
        }
    },
    "icons": {
        "16": "assets\/img\/moodboard-16.png",
        "32": "assets\/img\/moodboard-32.png",
        "64": "assets\/img\/moodboard-64.png"
    },
    "background": {
        "scripts": [
            "vendor\/webextension-polyfill\/dist\/browser-polyfill.min.js",
            "src\/background\/browser_action.js",
            "src\/background\/menus.js",
            "src\/background\/storage.js",
            "src\/background\/index.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "vendor\/webextension-polyfill\/dist\/browser-polyfill.min.js",
                "src\/content\/index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "32": "assets\/img\/moodboard-32.png",
            "64": "assets\/img\/moodboard-64.png"
        },
        "default_title": "Quick moodboards"
    },
    "permissions": [
        "*:\/\/*\/*",
        "downloads",
        "contextMenus",
        "tabs",
        "storage"
    ]
}