Reddit Extras

A boilerplate to chrome extension with webpack

Reddit Extrasとは何ですか?

Reddit ExtrasはRoadworkによって開発されたChromeの拡張機能で、その主な機能は「A boilerplate to chrome extension with webpack」です。

拡張機能のスクリーンショット

screenshot

Reddit Extras拡張機能のCRXファイルをダウンロード

Reddit Extras拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Reddit Extras Reddit Extras
ID hpbbgnajgjidpoccddnecafkbnjgpmeb
公式URL https://chromewebstore.google.com/detail/reddit-extras/hpbbgnajgjidpoccddnecafkbnjgpmeb
説明 A boilerplate to chrome extension with webpack
ファイルサイズ 1.93 MB
インストール数 111
現在のバージョン 0.1
最終更新日 2019-04-13
公開日 2019-04-13
評価 4.33/5 合計 3 レビュー
開発者 Roadwork
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://scraper.ai/privacy-extension
対応言語 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": []
    }
}