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."입니다.
확장 프로그램 스크린샷
Inspiring Board 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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": [] } ] } |