Inspiring Board

Your personal board with designs inspiration from Dribbble, Behance, and Uplabs.

Inspiring Boardคืออะไร?

Inspiring Board เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Drop.In และคุณลักษณะหลักของมันคือ "Your personal board with designs inspiration from Dribbble, Behance, and Uplabs."

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

screenshot
screenshot

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

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

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

                        Do you usually seek inspiration for your next coding or design project from Dribbble, Behance, and Uplabs?

If yes, you probably end up with 100's of tabs open, just like me. 😅

#Inspiring Board
A FREE browser extension to manage all your inspirations from these websites in one place.
- Central dashboard with shots from Dribbble, Behance, Uplabs
- Support for images, gifs, and videos.
- Direct link to the source
- All data is stored locally

Missing a must-have feature? Please let me know! :)                    

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

ชื่อ Inspiring Board Inspiring Board
ID ccnoapmidfaoglgpomngomeojjdbpnih
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/inspiring-board/ccnoapmidfaoglgpomngomeojjdbpnih
คำอธิบาย Your personal board with designs inspiration from Dribbble, Behance, and Uplabs.
ขนาดไฟล์ 4.52 MB
จำนวนการติดตั้ง 132
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-08-26
วันที่เผยแพร่ 2021-08-22
คะแนน 2.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Drop.In
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://dropin.versoly.page
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Your personal board with designs inspiration from Dribbble, Behance, and Uplabs.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Inspiring Board",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon_16.png",
            "32": "icon_32.png",
            "48": "icon_48.png",
            "128": "icon_128.png"
        }
    },
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dribbble.com\/*",
                "https:\/\/www.uplabs.com\/*",
                "https:\/\/www.behance.net\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon_16.png",
                "icon_32.png",
                "icon_48.png",
                "icon_128.png"
            ],
            "matches": []
        }
    ]
}