WebClip - Clip all the things
Store all the interesting things around the Web on your personal online datastore
什麼是WebClip - Clip all the things?
WebClip - Clip all the things是由angelo.veltens開發的Chrome擴展程式,該擴展的主要功能是“Store all the interesting things around the Web on your personal online datastore”。
擴展截圖
下載WebClip - Clip all the things擴展crx文件
下載WebClip - Clip all the things擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
WebClip not only allows you to bookmark your favorite web pages, but to store all the interesting things you find on the Web - like recipes, fashion, products, games, and much more - in a structured way to your personal online data store based on Solid web standards.
Connect your Solid Pod and start collecting interesting things found across the world wide web. 擴展基本資訊
| 名稱 | |
| ID | mfgjcggbpdkbnnpgllaicoeplfgkfnkj |
| 官方網址 | https://chromewebstore.google.com/detail/webclip-clip-all-the-thin/mfgjcggbpdkbnnpgllaicoeplfgkfnkj |
| 簡介 | Store all the interesting things around the Web on your personal online datastore |
| 檔案大小 | 4.26 MB |
| 安裝次數 | 40 |
| 目前版本 | 0.10.1 |
| 更新時間 | 2022-06-29 |
| 上架時間 | 2021-08-17 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | angelo.veltens |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/codecentric/web-clip |
| 說明頁面URL | https://github.com/codecentric/web-clip/discussions/categories/q-a |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "WebClip - Clip all the things",
"short_name": "WebClip",
"description": "Store all the interesting things around the Web on your personal online datastore",
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"browser_action": {
"default_title": "WebClip"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"identity"
],
"web_accessible_resources": [],
"options_page": "options.html",
"version": "0.10.1"
} | |