Centroly - Bookmark, Save, and Discover Links
Discover curated links from like-minded people, or build your own collections of links
Was ist Centroly - Bookmark, Save, and Discover Links?
Centroly - Bookmark, Save, and Discover Links ist eine Chrome-Erweiterung, die von https://centroly.com entwickelt wurde, und ihr Hauptmerkmal ist "Discover curated links from like-minded people, or build your own collections of links".
Erweiterungsscreenshots
Centroly - Bookmark, Save, and Discover Links-Erweiterungs-CRX-Datei herunterladen
Laden Sie Centroly - Bookmark, Save, and Discover Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Centroly - Bookmark, Save, and Discover Links |
ID | kcjfgejibhifpbnheofjkjaobmkhpdho |
Offizielle URL | https://chromewebstore.google.com/detail/centroly-bookmark-save-an/kcjfgejibhifpbnheofjkjaobmkhpdho |
Beschreibung | Discover curated links from like-minded people, or build your own collections of links |
Dateigröße | 253 KB |
Installationsanzahl | 82 |
Aktuelle Version | 0.4.2 |
Letztes Update | 2023-03-05 |
Veröffentlichungsdatum | 2022-01-06 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | https://centroly.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://centroly.com |
Hilfeseite URL | https://twitter.com/centroly |
URL der Datenschutzrichtlinien-Seite | https://centroly.com/terms |
Unterstützte Sprachen | 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" } } } |