Dogetip Allowed Subreddits Indicator

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

Cos'è Dogetip Allowed Subreddits Indicator?

Dogetip Allowed Subreddits Indicator è un'estensione di Chrome sviluppata da matt.duncan13, e la sua funzione principale è "Shows a DOM indicator that the subreddit currently being views allows/bans tipping".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Dogetip Allowed Subreddits Indicator

Scarica i file di estensione Dogetip Allowed Subreddits Indicator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Dogetip Allowed Subreddits Indicator Dogetip Allowed Subreddits Indicator
ID pecgkckjkdlhoaacmmacdadfngimlkdn
URL Ufficiale https://chrome.google.com/webstore/detail/dogetip-allowed-subreddit/pecgkckjkdlhoaacmmacdadfngimlkdn
Descrizione Shows a DOM indicator that the subreddit currently being views allows/bans tipping
Dimensione del File 34.77 KB
Conteggio Installazioni 22
Versione Corrente 1.1
Ultimo Aggiornamento 2014-02-28
Data di Pubblicazione 2014-02-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore matt.duncan13
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/FoxxMD/dogetip-allowedindicator
URL della Pagina di Aiuto https://github.com/FoxxMD/dogetip-allowedindicator
Lingue Supportate 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"
    ]
}