Chrome Tab Router
Routes urls to desired user profiles
Chrome Tab Router là gì?
Chrome Tab Router là một tiện ích mở rộng Chrome được phát triển bởi Carl in 't Veld, và tính năng chính của nó là "Routes urls to desired user profiles".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Chrome Tab Router
Tải xuống các tệp mở rộng Chrome Tab Router dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension allows you to configure Chrome to move opened tabs to other connected user profiles. As you may know, every user profile allows for a separate security context. For example, if you have set up a personal and a work user profile, this extension can move your work related sites automatically to your work profile, and your personal sites to your personal profile. The extension requires you to set up rules based on regular expression matching with the url.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chrome Tab Router |
ID | mdagoleaelpaicldokjcpelifdgmiglg |
URL Chính Thức | https://chromewebstore.google.com/detail/chrome-tab-router/mdagoleaelpaicldokjcpelifdgmiglg |
Mô tả | Routes urls to desired user profiles |
Kích Thước Tệp | 1.26 MB |
Số Lần Cài Đặt | 51 |
Phiên Bản Hiện Tại | 0.5.5 |
Cập Nhật Lần Cuối | 2021-11-16 |
Ngày Phát Hành | 2021-06-24 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Carl in 't Veld |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/cveld/chrome-tab-router |
URL Trang Trợ Giúp | https://github.com/cveld/chrome-tab-router |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "$schema": "http:\/\/json.schemastore.org\/chrome-manifest", "manifest_version": 2, "name": "Chrome Tab Router", "description": "Routes urls to desired user profiles", "version": "0.5.5", "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/localhost:4200\/*", "https:\/\/*.azurestaticapps.net\/*" ], "js": [ "js\/vendor.js", "js\/content_script.js" ] } ], "background": { "scripts": [ "js\/vendor.js", "js\/background.js" ] }, "permissions": [ "storage", "tabs", " |