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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://centroly.com, και η κύρια λειτουργία του είναι "Discover curated links from like-minded people, or build your own collections of links".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Centroly - Bookmark, Save, and Discover Links

Λήψη αρχείων επέκτασης 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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Centroly - Bookmark, Save, and Discover Links 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"
        }
    }
}