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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Centroly - Bookmark, Save, and Discover Links |
ID | kcjfgejibhifpbnheofjkjaobmkhpdho |
공식 URL | 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" } } } |