Reddit Extras

A boilerplate to chrome extension with webpack

Apa itu Reddit Extras?

Reddit Extras adalah ekstensi Chrome yang dikembangkan oleh Roadwork, dan fitur utamanya adalah "A boilerplate to chrome extension with webpack".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Reddit Extras

Unduh file ekstensi Reddit Extras dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Reddit Extras Reddit Extras
ID hpbbgnajgjidpoccddnecafkbnjgpmeb
URL Resmi https://chromewebstore.google.com/detail/reddit-extras/hpbbgnajgjidpoccddnecafkbnjgpmeb
Deskripsi A boilerplate to chrome extension with webpack
Ukuran File 1.93 MB
Jumlah Instalasi 111
Versi Saat Ini 0.1
Terakhir Diperbarui 2019-04-13
Tanggal Publikasi 2019-04-13
Penilaian 4.33/5 Total 3 Penilaian
Pengembang Roadwork
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://scraper.ai/privacy-extension
Bahasa yang Didukung 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": []
    }
}