Tab Size on GitHub
Make tab indented code more readable by forcing the tab size to 4 instead of 8
ما هو Tab Size on GitHub؟
Tab Size on GitHub هو إضافة Chrome تم تطويرها بواسطة Sindre Sorhus، والميزة الرئيسية لها هي "Make tab indented code more readable by forcing the tab size to 4 instead of 8".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tab Size on GitHub
قم بتنزيل ملفات الامتداد Tab Size on GitHub بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Update: GitHub now has a tab size setting: https://github.blog/changelog/2021-09-21-tab-size-rendering-preference/ By default, in browsers, the tab character takes up 8 spaces in width. This makes tab-indented code hard to read. GitHub could have easily overridden this with a more reasonable number like 4, but they have chosen not to. Hence why this extension exists. It sets the tab width to 4.
معلومات أساسية عن التمديد
الاسم | Tab Size on GitHub |
ID | ofjbgncegkdemndciafljngjbdpfmbkn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn |
الوصف | Make tab indented code more readable by forcing the tab size to 4 instead of 8 |
حجم الملف | 5.09 KB |
عدد التثبيتات | 2,002 |
النسخة الحالية | 1.2.0 |
آخر تحديث | 2021-09-26 |
تاريخ النشر | 2018-09-24 |
تقييم | 4.96/5 مجموع تقييمات 23 |
المطور | Sindre Sorhus |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/sindresorhus/tab-size-on-github |
عنوان صفحة المساعدة | https://github.com/sindresorhus/tab-size-on-github/issues |
عنوان صفحة سياسة الخصوصية | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Size on GitHub", "version": "1.2.0", "description": "Make tab indented code more readable by forcing the tab size to 4 instead of 8", "homepage_url": "https:\/\/github.com\/sindresorhus\/tab-size-on-github", "manifest_version": 2, "minimum_chrome_version": "36", "icons": { "128": "icon.png" }, "permissions": [ "https:\/\/github.com\/*\/*", "https:\/\/gist.github.com\/*\/*", "https:\/\/raw.githubusercontent.com\/*\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/github.com\/*\/*", "https:\/\/gist.github.com\/*\/*", "https:\/\/raw.githubusercontent.com\/*\/*" ], "css": [ "content.css" ] } ] } |