companion for reddit

Turn your browser into a redditor's best friend.

什么是companion for reddit?

companion for reddit是由Toolbox development team开发的Chrome扩展程序,该扩展的主要功能是“Turn your browser into a redditor's best friend.”。

扩展截图

screenshot

下载companion for reddit扩展crx文件

下载companion for reddit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a modified version of the official reddit companion which can be found here: 
https://chrome.google.com/webstore/detail/reddit-companion/algjnflpgoopkdijmkalfcifomdhmcbe 

This version fixes some long outstanding bugs and adds some new things:

- https support: should work on (more) https pages now. 
- notifications work again: the old companion used an outdated call. 
- design tweaks: Less shadows, less gradients, less rounded corners. 

Todo: 

- Update the notifications to have a better suited icon that is not blurred out. 
- Add support for moderation related tasks. 
   - Possibly integrate these with the moderator toolbox extension.                    

扩展基本信息

名称 companion for reddit companion for reddit
ID hjndgefhmfcgpoocjcgoemphhdkbhipm
官方URL https://chromewebstore.google.com/detail/companion-for-reddit/hjndgefhmfcgpoocjcgoemphhdkbhipm
简介 Turn your browser into a redditor's best friend.
文件大小 95.58 KB
安装次数 1,166
当前版本 2.0.4
更新时间 2016-06-21
上架时间 2016-06-21
评分 4.61/5 共23次评分
开发者 Toolbox development team
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/creesch/reddit-companion
隐私政策页面URL https://www.reddit.com/r/toolbox/wiki/privacy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "companion for reddit",
    "version": "2.0.4",
    "manifest_version": 2,
    "description": "Turn your browser into a redditor's best friend.",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "default-src 'self'; connect-src 'self' https:\/\/*.reddit.com; connect-src 'self' http:\/\/*.reddit.com; style-src 'self' 'unsafe-inline'; script-src 'self'",
    "icons": {
        "16": "images\/shine-16.png",
        "48": "images\/shine-48.png",
        "128": "images\/shine-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "images\/reddit.png",
        "default_title": "Show reddit information"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "debug.js",
                "redditContent.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "debug.js",
                "pageOverlay.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "pageOverlay.css",
        "bar.html",
        "submit.html",
        "images\/reddit-mail.svg",
        "images\/reddit-modmail.svg"
    ]
}