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"
        }
    }
}