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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } |