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 |
| 官方網址 | 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"
]
}
]
} | |