Dogetip Allowed Subreddits Indicator

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

¿Qué es Dogetip Allowed Subreddits Indicator?

Dogetip Allowed Subreddits Indicator es una extensión de Chrome desarrollada por matt.duncan13, y su función principal es "Shows a DOM indicator that the subreddit currently being views allows/bans tipping".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Dogetip Allowed Subreddits Indicator

Descarga archivos de extensión Dogetip Allowed Subreddits Indicator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Dogetip Allowed Subreddits Indicator Dogetip Allowed Subreddits Indicator
ID pecgkckjkdlhoaacmmacdadfngimlkdn
URL Oficial https://chrome.google.com/webstore/detail/dogetip-allowed-subreddit/pecgkckjkdlhoaacmmacdadfngimlkdn
Descripción Shows a DOM indicator that the subreddit currently being views allows/bans tipping
Tamaño del Archivo 34.77 KB
Cantidad de Instalaciones 22
Versión Actual 1.1
Última Actualización 2014-02-28
Fecha de Publicación 2014-02-28
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador matt.duncan13
Tipo de Pago free
Sitio Web de la Extensión https://github.com/FoxxMD/dogetip-allowedindicator
URL de la Página de Ayuda https://github.com/FoxxMD/dogetip-allowedindicator
Idiomas Soportados 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"
    ]
}