Slates

Never miss out on what your friends are reading.

Wat is Slates?

Slates is een Chrome-extensie ontwikkeld door https://slates.app, en de belangrijkste functie is "Never miss out on what your friends are reading.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Slates

Download Slates-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Slates Slates
ID cmapaaekpfldnmdaeognnchjlihlcgpd
Officiële URL https://chromewebstore.google.com/detail/slates/cmapaaekpfldnmdaeognnchjlihlcgpd
Beschrijving Never miss out on what your friends are reading.
Bestandsgrootte 637 KB
Aantal Installaties 30
Huidige Versie Slates Beta 1.0
Laatst Bijgewerkt 2022-04-28
Publicatiedatum 2022-01-27
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://slates.app
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://slates.app
Help Pagina-URL https://slates.app
Ondersteunde Talen 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": []
        }
    ]
}