Dogetip Allowed Subreddits Indicator

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

What is Dogetip Allowed Subreddits Indicator?

Dogetip Allowed Subreddits Indicator is a Chrome extension developed by matt.duncan13, and its main feature is "Shows a DOM indicator that the subreddit currently being views allows/bans tipping".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Dogetip Allowed Subreddits Indicator Extension CRX File

Download Dogetip Allowed Subreddits Indicator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Dogetip Allowed Subreddits Indicator Dogetip Allowed Subreddits Indicator
ID pecgkckjkdlhoaacmmacdadfngimlkdn
Official URL https://chrome.google.com/webstore/detail/dogetip-allowed-subreddit/pecgkckjkdlhoaacmmacdadfngimlkdn
Description Shows a DOM indicator that the subreddit currently being views allows/bans tipping
File Size 34.77 KB
Installation Count 22
Current Version 1.1
Last Updated 2014-02-28
Publish Date 2014-02-28
Rating 5.00/5 Total 1 Ratings
Developer matt.duncan13
Payment Type free
Extension Website https://github.com/FoxxMD/dogetip-allowedindicator
Help Page URL https://github.com/FoxxMD/dogetip-allowedindicator
Supported Languages 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"
    ]
}