Inspiring Board

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

什麼是Inspiring Board?

Inspiring Board是由Drop.In開發的Chrome擴展程式,該擴展的主要功能是“Your personal board with designs inspiration from Dribbble, Behance, and Uplabs.”。

擴展截圖

screenshot
screenshot

下載Inspiring Board擴展crx文件

下載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
官方網址 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": []
        }
    ]
}