tabswitcher
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
ما هو tabswitcher؟
tabswitcher هو إضافة Chrome تم تطويرها بواسطة https://jhchabran.com، والميزة الرئيسية لها هي "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة tabswitcher
قم بتنزيل ملفات الامتداد tabswitcher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension settings. Suggestion: use alt-space.
معلومات أساسية عن التمديد
الاسم | |
ID | gkdkligmcadfbagoeggeohelmgalchcn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
الوصف | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
حجم الملف | 375 KB |
عدد التثبيتات | 22 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2015-09-29 |
تاريخ النشر | 2015-09-29 |
تقييم | 4.50/5 مجموع تقييمات 2 |
المطور | https://jhchabran.com |
نوع الدفع | free |
موقع الإضافة | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
عنوان صفحة المساعدة | https://github.com/jhchabran/tabswitcher |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "tabswitcher", "version": "1.0.2", "browser_action": { "default_title": "Show the popup", "default_popup": "popup.html", "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "permissions": [ "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "tabswitcher.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "tabswitcher.js", "background.js" ], "persistent": false }, "manifest_version": 2 } |