Slates

Never miss out on what your friends are reading.

Slates là gì?

Slates là một tiện ích mở rộng Chrome được phát triển bởi https://slates.app, và tính năng chính của nó là "Never miss out on what your friends are reading.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Slates

Tải xuống các tệp mở rộng Slates dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Use this extension to easily save and share links with your friends on slates.app.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Slates Slates
ID cmapaaekpfldnmdaeognnchjlihlcgpd
URL Chính Thức https://chromewebstore.google.com/detail/slates/cmapaaekpfldnmdaeognnchjlihlcgpd
Mô tả Never miss out on what your friends are reading.
Kích Thước Tệp 637 KB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại Slates Beta 1.0
Cập Nhật Lần Cuối 2022-04-28
Ngày Phát Hành 2022-01-27
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://slates.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://slates.app
URL Trang Trợ Giúp https://slates.app
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Never miss out on what your friends are reading.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Slates",
    "version_name": "Slates Beta 1.0",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "SlatesLogo2.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "commands"
    ],
    "icons": {
        "128": "slates.ico"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": "Ctrl+Shift+L",
            "description": "Open Slates"
        },
        "addNode": {
            "suggested_key": "Ctrl+Shift+S",
            "description": "Add link"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "SlatesLogo.svg",
                "SlatesLogo2.png",
                "SlatesLogoDark.svg",
                "SlatesLogoLight.svg",
                "slates.ico"
            ],
            "matches": []
        }
    ]
}