Slate Web Extension

Easily save any link to your Slate account.

Slate Web Extension là gì?

Slate Web Extension là một tiện ích mở rộng Chrome được phát triển bởi hello, và tính năng chính của nó là "Easily save any link to your Slate account.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Slate Web Extension 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

                        Slate is a personal storage space that helps you keep track and come back to things you care about on the web.

Get started with 30GB of free storage and begin collecting with the Slate Web Extension today.                    

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

Tên Slate Web Extension Slate Web Extension
ID gloembacbehhbfbkcfjmloikeeaebnoc
URL Chính Thức https://chromewebstore.google.com/detail/slate-web-extension/gloembacbehhbfbkcfjmloikeeaebnoc
Mô tả Easily save any link to your Slate account.
Kích Thước Tệp 2.66 MB
Số Lần Cài Đặt 645
Phiên Bản Hiện Tại 4.0.1
Cập Nhật Lần Cuối 2022-10-04
Ngày Phát Hành 2020-09-15
Đánh Giá 3.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển hello
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://slate.host/
URL Trang Trợ Giúp https://slate.host/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Slate Web Extension",
    "description": "Easily save any link to your Slate account.",
    "version": "4.0.1",
    "homepage_url": "https:\/\/slate.host",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_title": "Slate Web Extension"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                ".\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "chrome_url_overrides": {
        "newtab": "newTab.html"
    },
    "permissions": [
        "tabs",
        "cookies",
        "commands",
        "bookmarks",
        "history",
        "storage",
        "unlimitedStorage",
        "tabGroups"
    ],
    "host_permissions": [
        "https:\/\/slate.host\/",
        "https:\/\/slate-dev.onrender.com\/"
    ],
    "commands": {
        "open-app": {
            "suggested_key": {
                "default": "Ctrl+Period",
                "mac": "Command+J"
            },
            "description": "Open the slate extension"
        },
        "open-app-on-slates": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "Alt+T"
            },
            "description": "Open the slate extension"
        },
        "direct-save": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Direct save"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "\/fonts\/*",
                "static\/*",
                "\/images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}