Reddit Sidebar Toggle Button
Enables a more pleasant experience viewing Reddit on a smaller window by toggling the visibility of the sidebar.
ما هو Reddit Sidebar Toggle Button؟
Reddit Sidebar Toggle Button هو إضافة Chrome تم تطويرها بواسطة TacoWhisperer Productions، والميزة الرئيسية لها هي "Enables a more pleasant experience viewing Reddit on a smaller window by toggling the visibility of the sidebar.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Reddit Sidebar Toggle Button
قم بتنزيل ملفات الامتداد Reddit Sidebar Toggle Button بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This add-on adds a minimally intrusive button on your lower right hand screen to toggle the sidebar while browsing Reddit. This is a good solution for those that like to have multiple pages open, but dislike how the sidebar pushes all of the text to the side. If you ever want to see new announcements that moderators pushed through the sidebar, want to submit something, or simply have the sidebar visible, just click the button again and the sidebar will re-appear as if nothing happened. By default, the current version disables the button when the sidebar is not taking up too much screen space. However, this setting can be toggled from the "RSTB" tab usually found at the top of the Reddit so that it is on at all times. This extension also works with RES! All source code for the extension can be found at https://github.com/tacowhisperer/RSTB
معلومات أساسية عن التمديد
الاسم | Reddit Sidebar Toggle Button |
ID | hcajnaeckhhlidlnnfmbffhjncabmlkg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/reddit-sidebar-toggle-but/hcajnaeckhhlidlnnfmbffhjncabmlkg |
الوصف | Enables a more pleasant experience viewing Reddit on a smaller window by toggling the visibility of the sidebar. |
حجم الملف | 1.13 MB |
عدد التثبيتات | 126 |
النسخة الحالية | 1.3.3 beta |
آخر تحديث | 2017-01-09 |
تاريخ النشر | 2017-01-08 |
تقييم | 3.75/5 مجموع تقييمات 4 |
المطور | TacoWhisperer Productions |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit Sidebar Toggle Button", "short_name": "RSTB", "version": "0.4.71", "version_name": "1.3.3 beta", "description": "Enables a more pleasant experience viewing Reddit on a smaller window by toggling the visibility of the sidebar.", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "64": "icons\/64.png", "128": "icons\/128.png" }, "author": "Andres Salgado", "content_scripts": [ { "matches": [ "*:\/\/reddit.com\/*", "*:\/\/*.reddit.com\/*" ], "exclude_matches": [ "*:\/\/api.reddit.com\/*", "*:\/\/m.reddit.com\/*" ], "js": [ "scripts\/objects.js", "scripts\/global_variables_and_functions.js", "scripts\/script.js" ], "css": [ "menu.css" ], "run_at": "document_end" } ], "permissions": [ "storage" ] } |