Drup - Shared bookmarks for teams
Save links in a group space with previews and search.
什么是Drup - Shared bookmarks for teams?
Drup - Shared bookmarks for teams是由https://getdrup.com开发的Chrome扩展程序,该扩展的主要功能是“Save links in a group space with previews and search.”。
扩展截图
下载Drup - Shared bookmarks for teams扩展crx文件
下载Drup - Shared bookmarks for teams扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Drup is a simple bookmarking app specially designed for teams. Collaborate better by creating a shared repository of links for everyone to browse, search and organize. - Add any link in one click - Organize links into topics / projects - Search across everything. No more waiting or asking for links. - Option to save links as private, visible just to you - See the links others are adding in Activity feed Learn more at https://getdrup.com/ Questions? Comments? [email protected]
扩展基本信息
名称 | |
ID | ndklmnlejedloijkopiphfemnhfkaapd |
官方URL | https://chromewebstore.google.com/detail/drup-shared-bookmarks-for/ndklmnlejedloijkopiphfemnhfkaapd |
简介 | Save links in a group space with previews and search. |
文件大小 | 782 KB |
安装次数 | 172 |
当前版本 | 1.3.5 |
更新时间 | 2021-02-18 |
上架时间 | 2020-07-29 |
评分 | 5.00/5 共4次评分 |
开发者 | https://getdrup.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://getdrup.com/ |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Drup - Shared bookmarks for teams", "version": "1.3.5", "description": "Save links in a group space with previews and search.", "icons": { "16": "images\/drup_16.png", "32": "images\/drup_32.png", "48": "images\/drup_48.png", "128": "images\/drup_128.png", "512": "images\/drup_512.png", "1024": "images\/drup_1024.png" }, "permissions": [ "activeTab", "bookmarks", "cookies", "https:\/\/app.getdrup.com\/" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/drup_16.png", "32": "images\/drup_32.png", "48": "images\/drup_48.png", "128": "images\/drup_128.png", "512": "images\/drup_512.png", "1024": "images\/drup_1024.png" } }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/app.getdrup.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" } ], "manifest_version": 2 } |