GiiLD Bookmark
Allows you annotate online resources and leverage them to improve your Web.
GiiLD Bookmark란 무엇입니까?
GiiLD Bookmark은(는) https://giild.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you annotate online resources and leverage them to improve your Web."입니다.
확장 프로그램 스크린샷
GiiLD Bookmark 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Giild is a personalized learning platform. Giild's chrome extension lets you create bookmarks, highlight webpages and see other people's comments on the page. Giild helps you organize and manage your learning.
확장 프로그램 기본 정보
이름 | GiiLD Bookmark |
ID | aacchphcelmdefffjbbkpbijlgimeohh |
공식 URL | https://chromewebstore.google.com/detail/giild-bookmark/aacchphcelmdefffjbbkpbijlgimeohh |
설명 | Allows you annotate online resources and leverage them to improve your Web. |
파일 크기 | 488 KB |
설치 횟수 | 12 |
현재 버전 | 0.95.1 |
최근 업데이트 | 2020-04-16 |
출시 날짜 | 2020-04-14 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://giild.net |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | http://www.giild.net/privacy.html |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GiiLD Bookmark", "description": "Allows you annotate online resources and leverage them to improve your Web.", "version": "0.95.1", "manifest_version": 2, "background": { "scripts": [ "background\/aws\/identity.js", "background\/aws\/misc.js", "background\/aws\/apig.js", "background\/analysis.js", "background\/main.js" ], "persistent": true }, "commands": { "bookmarks": { "suggested_key": { "default": "Ctrl+Q", "windows": "Ctrl+Q", "mac": "MacCtrl+Shift+1" }, "description": "Show bookmarks", "global": false } }, "browser_action": { "default_popup": "login.html" }, "icons": { "16": "img\/logo16.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "permissions": [ "contextMenus", "activeTab", "tabs", "storage", "notifications", "commands", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "js": [ "content\/analysis.js", "content\/highlight.js", "content\/seed.js" ], "css": [ "content\/all.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "all_frames": false } ], "externally_connectable": { "matches": [ "https:\/\/*.concordlab.com\/*", "https:\/\/*.giild.net\/*" ], "accepts_tls_channel_id": false }, "web_accessible_resources": [ "img\/*", "login.html", "content\/sidebar\/*", "content\/sidebar\/sidebar.css", "content\/sidebar\/sidebar.html", "content\/sidebar\/sidebar.js" ] } |