Centroly - Bookmark, Save, and Discover Links
Discover curated links from like-minded people, or build your own collections of links
什麼是Centroly - Bookmark, Save, and Discover Links?
Centroly - Bookmark, Save, and Discover Links是由https://centroly.com開發的Chrome擴展程式,該擴展的主要功能是“Discover curated links from like-minded people, or build your own collections of links”。
擴展截圖
下載Centroly - Bookmark, Save, and Discover Links擴展crx文件
下載Centroly - Bookmark, Save, and Discover Links擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Easily bookmark and save articles, videos, podcasts and more to your collections.
Discover content from your favorite topics on the internet (startups, product, tech, etc.) saved by fellow like-minded people.
Features
- Highlight articles
- Save articles, videos, podcasts and more with 2 clicks
- Organize your links with tags, collections and sections
- Retrieve saved content easily on https://centroly.com
- Discover content from other users on the platform 擴展基本資訊
| 名稱 | |
| ID | kcjfgejibhifpbnheofjkjaobmkhpdho |
| 官方網址 | https://chromewebstore.google.com/detail/centroly-bookmark-save-an/kcjfgejibhifpbnheofjkjaobmkhpdho |
| 簡介 | Discover curated links from like-minded people, or build your own collections of links |
| 檔案大小 | 253 KB |
| 安裝次數 | 82 |
| 目前版本 | 0.4.2 |
| 更新時間 | 2023-03-05 |
| 上架時間 | 2022-01-06 |
| 評分 | 4.00/5 共 4 次評分 |
| 開發者 | https://centroly.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://centroly.com |
| 說明頁面URL | https://twitter.com/centroly |
| 隱私政策頁面URL | https://centroly.com/terms |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Centroly - Bookmark, Save, and Discover Links",
"version": "0.4.2",
"description": "Discover curated links from like-minded people, or build your own collections of links",
"browser_action": {
"default_icon": ".\/assets\/icon-512.png",
"default_popup": ".\/dist\/popup\/index.html"
},
"options_ui": {
"page": ".\/dist\/options\/index.html",
"open_in_tab": true,
"chrome_style": false
},
"background": {
"page": ".\/dist\/background\/index.html",
"persistent": false
},
"icons": {
"16": ".\/assets\/icon-16.png",
"48": ".\/assets\/icon-48.png",
"128": ".\/assets\/icon-128.png"
},
"permissions": [
"tabs",
"activeTab",
"cookies",
"http:\/\/*\/",
"https:\/\/*\/",
"contextMenus",
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
".\/lib\/jquery-3.6.1.slim.min.js",
".\/dist\/contentScripts\/index.global.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
"dist\/contentScripts\/style.css"
],
"commands": {
"save-current-link": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Save current link to Centroly"
},
"manage-highlights": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "Command+Shift+M"
},
"description": "Manage saved highlights"
},
"highlight-selected": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"mac": "Command+Shift+H"
},
"description": "Highlight selected text"
}
}
} | |