Sidebar Toggle
Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E
ما هو Sidebar Toggle؟
Sidebar Toggle هو إضافة Chrome تم تطويرها بواسطة https://rahatol.com، والميزة الرئيسية لها هي "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Sidebar Toggle
قم بتنزيل ملفات الامتداد Sidebar Toggle بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Clear the arbitrary spaces in pages that are constantly open on your screen. Currently only on pages: - Reddit - Wikipedia - Youtube - Facebook I can add more sites on demand. Note: Because wikipedia pages can be hosted on sites other than wikipedia.org the permissions require you to allow for all pages. I dont do anything other than remove some css elements and this can be seen on the extension code https://github.com/sinanm89/Wiki-NavBar-Toggle
معلومات أساسية عن التمديد
الاسم | Sidebar Toggle |
ID | phedkmlklpciilhmiombagckiidaghje |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/sidebar-toggle/phedkmlklpciilhmiombagckiidaghje |
الوصف | Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E |
حجم الملف | 23.96 KB |
عدد التثبيتات | 96 |
النسخة الحالية | 0.1.0.1 |
آخر تحديث | 2017-11-02 |
تاريخ النشر | 2017-11-01 |
تقييم | 5.00/5 مجموع تقييمات 6 |
المطور | https://rahatol.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "permissions": [ "storage", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "onload.js" ] } ], "browser_action": { "default_icon": "fold.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Ctrl+Shift+E" } } }, "author": "Sinan Midillili", "name": "Sidebar Toggle", "short_name": "ST", "description": "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command\/Ctrl+Shift+E", "version": "0.1.0.1", "manifest_version": 2, "icons": { "16": "fold.png", "48": "fold.png", "128": "fold.png" } } |