Reddit Extras

A boilerplate to chrome extension with webpack

Cos'è Reddit Extras?

Reddit Extras è un'estensione di Chrome sviluppata da Roadwork, e la sua funzione principale è "A boilerplate to chrome extension with webpack".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Reddit Extras

Scarica i file di estensione Reddit Extras 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

                        This plugin is created for the reddit.com website to support extra feature's commonly requested by the reddit community. Currently the focus is put on multireddits with further features implemented as per comments.

Logo credits: https://reddit.com                    

Informazioni di Base sull'Estensione

Nome Reddit Extras Reddit Extras
ID hpbbgnajgjidpoccddnecafkbnjgpmeb
URL Ufficiale https://chromewebstore.google.com/detail/reddit-extras/hpbbgnajgjidpoccddnecafkbnjgpmeb
Descrizione A boilerplate to chrome extension with webpack
Dimensione del File 1.93 MB
Conteggio Installazioni 111
Versione Corrente 0.1
Ultimo Aggiornamento 2019-04-13
Data di Pubblicazione 2019-04-13
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore Roadwork
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://scraper.ai/privacy-extension
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A boilerplate to chrome extension with webpack",
    "version": "0.1",
    "name": "Reddit Extras",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.reddit.com\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "128.png"
    },
    "icons": {
        "128": "128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage",
        "notifications",
        "*:\/\/*.reddit.com\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com https:\/\/ssl.google-analytics.com; object-src 'self'",
    "oauth2": {
        "client_id": "809763600343-lil0ldk1scn8o7p1v97ncs3jhe6vrlhs.apps.googleusercontent.com",
        "scopes": []
    }
}