Tab Position Customizer - Modified
A extension for position of tabs
ما هو Tab Position Customizer - Modified؟
Tab Position Customizer - Modified هو إضافة Chrome تم تطويرها بواسطة Kristoffer، والميزة الرئيسية لها هي "A extension for position of tabs".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tab Position Customizer - Modified
قم بتنزيل ملفات الامتداد Tab Position Customizer - Modified بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Tab Position Customizer Modified.
- Modify opening and closing behavior of tabs
- Includes url matching for tab position
- Based on : Tab-Position-Customizer 2
Source Code:
https://github.com/Hywela/Tab-Postion-Cuztomizer-Modified معلومات أساسية عن التمديد
| الاسم | |
| ID | kkhcdbdhbmegbbhgmdhhpfmjhlhjlghp |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/tab-position-customizer-m/kkhcdbdhbmegbbhgmdhhpfmjhlhjlghp |
| الوصف | A extension for position of tabs |
| حجم الملف | 666 KB |
| عدد التثبيتات | 5,684 |
| النسخة الحالية | 1.4.1 |
| آخر تحديث | 2021-11-15 |
| تاريخ النشر | 2020-06-24 |
| تقييم | 4.18/5 مجموع تقييمات 33 |
| المطور | Kristoffer |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/Hywela/Tab-Postion-Cuztomizer-Modified/ |
| عنوان صفحة المساعدة | https://github.com/Hywela/Tab-Postion-Cuztomizer-Modified/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tab Position Customizer - Modified",
"short_name": "Tab Position",
"description": "A extension for position of tabs",
"version": "1.4.1",
"manifest_version": 2,
"icons": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png",
"256": "icons\/icon_256.png"
},
"background": {
"scripts": [
"background.js"
]
},
"default_locale": "en",
"options_page": "options\/options.html",
"permissions": [
"tabs",
"storage",
"webNavigation",
"contextMenus"
],
"commands": {
"new_tab": {
"suggested_key": {
"default": "Alt+Shift+I"
},
"description": "Duplicate the current tab"
},
"duplicate_tab": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Duplicate to a new window"
},
"close_tab": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Pop highlighted tabs out to a new window"
},
"random_tab": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "New tab to the right"
}
}
} | |