Distraction Free Reddit
Remove the distracting parts of reddit and focus only on what really matters to you.
ما هو Distraction Free Reddit؟
Distraction Free Reddit هو إضافة Chrome تم تطويرها بواسطة dylanjmorrison30، والميزة الرئيسية لها هي "Remove the distracting parts of reddit and focus only on what really matters to you.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Distraction Free Reddit
قم بتنزيل ملفات الامتداد Distraction Free Reddit بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Distraction Free Reddit is an extension that helps you use Reddit more intentionally. You can block off parts of Reddit to cut out mindless scrolling and increase productivity. The extension includes features like hiding the main feed, hiding r/all and popular, hiding user profiles, hiding full page search, hiding the sidebar, hiding comments, and more. You can also use whitelist or blacklist mode to customise your Reddit experience further.
معلومات أساسية عن التمديد
الاسم | Distraction Free Reddit |
ID | dgllcfdfcgnocdmmglnpbpoalhpdfckg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/distraction-free-reddit/dgllcfdfcgnocdmmglnpbpoalhpdfckg |
الوصف | Remove the distracting parts of reddit and focus only on what really matters to you. |
حجم الملف | 416 KB |
عدد التثبيتات | 263 |
النسخة الحالية | 1.0.5 |
آخر تحديث | 2023-06-28 |
تاريخ النشر | 2022-09-01 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | dylanjmorrison30 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/djm30/Distraction-Free-Reddit |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Distraction Free Reddit", "version": "1.0.5", "description": "Remove the distracting parts of reddit and focus only on what really matters to you.", "permissions": [ "activeTab", "storage", "tabs" ], "background": { "service_worker": ".\/static\/js\/background.js" }, "content_scripts": [ { "js": [ ".\/static\/js\/content.js" ], "matches": [ "*:\/\/*.reddit.com\/*" ], "run_at": "document_end" } ], "icons": { "192": "logo192.png" }, "action": { "default_icon": { "192": "logo192.png" }, "default_title": "Popup", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true } } |