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"
    ]
}