Slates

Never miss out on what your friends are reading.

Cos'è Slates?

Slates è un'estensione di Chrome sviluppata da https://slates.app, e la sua funzione principale è "Never miss out on what your friends are reading.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Slates

Scarica i file di estensione Slates in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Slates Slates
ID cmapaaekpfldnmdaeognnchjlihlcgpd
URL Ufficiale https://chromewebstore.google.com/detail/slates/cmapaaekpfldnmdaeognnchjlihlcgpd
Descrizione Never miss out on what your friends are reading.
Dimensione del File 637 KB
Conteggio Installazioni 30
Versione Corrente Slates Beta 1.0
Ultimo Aggiornamento 2022-04-28
Data di Pubblicazione 2022-01-27
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://slates.app
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://slates.app
URL della Pagina di Aiuto https://slates.app
Lingue Supportate 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": []
        }
    ]
}