Slates

Never miss out on what your friends are reading.

What is Slates?

Slates is a Chrome extension developed by https://slates.app, and its main feature is "Never miss out on what your friends are reading.".

Extension Screenshots

screenshot

Download Slates Extension CRX File

Download Slates extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Slates Slates
ID cmapaaekpfldnmdaeognnchjlihlcgpd
Official URL https://chromewebstore.google.com/detail/slates/cmapaaekpfldnmdaeognnchjlihlcgpd
Description Never miss out on what your friends are reading.
File Size 637 KB
Installation Count 30
Current Version Slates Beta 1.0
Last Updated 2022-04-28
Publish Date 2022-01-27
Rating 5.00/5 Total 2 Ratings
Developer https://slates.app
Email [email protected]
Payment Type free
Extension Website https://slates.app
Help Page URL https://slates.app
Supported Languages 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": []
        }
    ]
}