Dogetip Allowed Subreddits Indicator
Shows a DOM indicator that the subreddit currently being views allows/bans tipping
Qu'est-ce que Dogetip Allowed Subreddits Indicator ?
Dogetip Allowed Subreddits Indicator est une extension Chrome développée par matt.duncan13, et sa fonction principale est "Shows a DOM indicator that the subreddit currently being views allows/bans tipping".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Dogetip Allowed Subreddits Indicator
Téléchargez les fichiers d'extension Dogetip Allowed Subreddits Indicator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | pecgkckjkdlhoaacmmacdadfngimlkdn |
URL Officiel | https://chrome.google.com/webstore/detail/dogetip-allowed-subreddit/pecgkckjkdlhoaacmmacdadfngimlkdn |
Description | Shows a DOM indicator that the subreddit currently being views allows/bans tipping |
Taille du Fichier | 34.77 KB |
Nombre d'Installations | 22 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2014-02-28 |
Date de Publication | 2014-02-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | matt.duncan13 |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/FoxxMD/dogetip-allowedindicator |
URL de la Page d'Aide | https://github.com/FoxxMD/dogetip-allowedindicator |
Langues Prises en Charge | 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" ] } |