Slates

Never miss out on what your friends are reading.

Slatesとは何ですか?

Slatesはhttps://slates.appによって開発されたChromeの拡張機能で、その主な機能は「Never miss out on what your friends are reading.」です。

拡張機能のスクリーンショット

screenshot

Slates拡張機能のCRXファイルをダウンロード

Slates拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Slates Slates
ID cmapaaekpfldnmdaeognnchjlihlcgpd
公式URL https://chromewebstore.google.com/detail/slates/cmapaaekpfldnmdaeognnchjlihlcgpd
説明 Never miss out on what your friends are reading.
ファイルサイズ 637 KB
インストール数 30
現在のバージョン Slates Beta 1.0
最終更新日 2022-04-28
公開日 2022-01-27
評価 5.00/5 合計 2 レビュー
開発者 https://slates.app
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://slates.app
ヘルプページのURL https://slates.app
対応言語 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": []
        }
    ]
}