Dogetip Allowed Subreddits Indicator

Shows a DOM indicator that the subreddit currently being views allows/bans tipping

什么是Dogetip Allowed Subreddits Indicator?

Dogetip Allowed Subreddits Indicator是由matt.duncan13开发的Chrome扩展程序,该扩展的主要功能是“Shows a DOM indicator that the subreddit currently being views allows/bans tipping”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Dogetip Allowed Subreddits Indicator扩展crx文件

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

扩展使用说明

                        Displays a small floating notification to inform you if the subreddit you are currently browsing allows dogetipping.

The notification minimizes itself on screen once scrolling begins to get out of your way while still providing a helpful hint!

Subreddit allowed/banned list is pulled from www.reddit.com/r/dogecoin/wiki/other_subreddit_tipping

Originally written by Matt Duncan - DOGE donations: D5ZN46GTLs2vqLFwkxcPMdjA1q6Q9nDhKz

Ported for chrome by Maxime Kjaer - DOGE donations: D9xQ9V3BqzVcJtUj92immJJYcFsMLmVghq                    

扩展基本信息

名称 Dogetip Allowed Subreddits Indicator Dogetip Allowed Subreddits Indicator
ID pecgkckjkdlhoaacmmacdadfngimlkdn
官方URL https://chrome.google.com/webstore/detail/dogetip-allowed-subreddit/pecgkckjkdlhoaacmmacdadfngimlkdn
简介 Shows a DOM indicator that the subreddit currently being views allows/bans tipping
文件大小 34.77 KB
安装次数 22
当前版本 1.1
更新时间 2014-02-28
上架时间 2014-02-28
评分 5.00/5 共1次评分
开发者 matt.duncan13
付费类型 free
扩展官网 https://github.com/FoxxMD/dogetip-allowedindicator
帮助页面URL https://github.com/FoxxMD/dogetip-allowedindicator
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dogetip Allowed Subreddits Indicator",
    "version": "1.1",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "Shows a DOM indicator that the subreddit currently being views allows\/bans tipping",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/r\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.reddit.com\/r\/all\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "suchStyle.css"
            ]
        }
    ],
    "permissions": [
        "*:\/\/www.reddit.com\/r\/dogecoin\/wiki\/other_subreddit_tipping"
    ]
}