Websee
This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
什么是Websee?
Websee是由https://websee.io开发的Chrome扩展程序,该扩展的主要功能是“This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!”。
扩展截图
下载Websee扩展crx文件
下载Websee扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Join the collective mind of the web! Create private groups to automatically share the web content you and friends discover. More features on the way.
https://www.websee.io/
The extension codebase is completely open source and freely licensed under the GNU General Public License. The code repository can be viewed at https://github.com/lasernite/websee_ext. We welcome your contributions! 扩展基本信息
| 名称 | |
| ID | pcpblbaphpngepnmihnboflfjaibgoek |
| 官方URL | https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek |
| 简介 | This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you! |
| 文件大小 | 79.49 KB |
| 安装次数 | 27 |
| 当前版本 | 0.6 |
| 更新时间 | 2017-03-25 |
| 上架时间 | 2017-03-25 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | https://websee.io |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.websee.io/ |
| 隐私政策页面URL | https://www.newstream.io/privacy_policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Websee",
"short_name": "Websee",
"description": "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!",
"version": "0.6",
"permissions": [
"activeTab",
"tabs",
"webNavigation",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Websee - The Sea of the Web",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.websee.io\/*",
"https:\/\/www.websee.io\/*"
],
"js": [
"websee.js"
]
}
]
} | |