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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον matt.duncan13, και η κύρια λειτουργία του είναι "Shows a DOM indicator that the subreddit currently being views allows/bans tipping".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Dogetip Allowed Subreddits Indicator
Λήψη αρχείων επέκτασης 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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" ] } |