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文件
下载GiiLD Bookmark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
]
} | |