TabFusion
Combine all your Chrome tabs into a single window
ما هو TabFusion؟
TabFusion هو إضافة Chrome تم تطويرها بواسطة https://heatherrivers.com، والميزة الرئيسية لها هي "Combine all your Chrome tabs into a single window".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TabFusion
قم بتنزيل ملفات الامتداد TabFusion بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
TabFusion lets you combine all your tabs into a single window in a highly configurable way. * Choose your own keyboard shortcut or use the browser button * Decide which types of windows to combine (popups, panels, apps) * Exclude tabs based on url patterns
معلومات أساسية عن التمديد
الاسم | TabFusion |
ID | abompjhjgaeodboocegeokagjjiafobj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tabfusion/abompjhjgaeodboocegeokagjjiafobj |
الوصف | Combine all your Chrome tabs into a single window |
حجم الملف | 41.64 KB |
عدد التثبيتات | 324 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2015-03-22 |
تاريخ النشر | 2015-03-22 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | https://heatherrivers.com |
نوع الدفع | free |
موقع الإضافة | https://github.com/rivers/tabfusion |
عنوان صفحة المساعدة | https://github.com/rivers/tabfusion/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TabFusion", "version": "1.0.1", "manifest_version": 2, "description": "Combine all your Chrome tabs into a single window", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" } }, "background": { "scripts": [ "fusion.js", "listener.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "commands": { "fuseTabs": { "description": "Fuse all tabs", "suggested_key": { "windows": "Ctrl+Shift+T", "mac": "Command+MacCtrl+T", "chromeos": "Ctrl+Shift+T", "linux": "Ctrl+Shift+T" } } }, "author": "Heather Rivers", "homepage_url": "https:\/\/github.com\/rivers\/tabfusion", "minimum_chrome_version": "40", "permissions": [ "tabs", "windows", "storage" ], "offline_enabled": true } |