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
电子邮箱 [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": []
    }
}