Project Tab Manager
Project Tab Manager is an extension for Google Chrome that helps you focus on a single project.
什么是Project Tab Manager?
Project Tab Manager是由https://blog.agektmr.com开发的Chrome扩展程序,该扩展的主要功能是“Project Tab Manager is an extension for Google Chrome that helps you focus on a single project.”。
扩展截图
下载Project Tab Manager扩展crx文件
下载Project Tab Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Project Tab Manager is an extension for Google Chrome that helps you focus on a single project. It preserves each windows as projects, not only you can restore them anytime, you can synchronize projects across different devices using same Chrome profile.
* In order to preserve window status for later use, press the window close button and do not close tabs you want to restore. 扩展基本信息
| 名称 | |
| ID | iapdnheekciiecjijobcglkcgeckpoia |
| 官方URL | https://chromewebstore.google.com/detail/project-tab-manager/iapdnheekciiecjijobcglkcgeckpoia |
| 简介 | Project Tab Manager is an extension for Google Chrome that helps you focus on a single project. |
| 文件大小 | 1 MB |
| 安装次数 | 2,634 |
| 当前版本 | 5.0.1 |
| 更新时间 | 2020-07-12 |
| 上架时间 | 2020-02-06 |
| 评分 | 3.79/5 共75次评分 |
| 开发者 | https://blog.agektmr.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/agektmr/ProjectTabManager |
| 帮助页面URL | https://github.com/agektmr/ProjectTabManager/issues |
| 支持的语言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Project Tab Manager",
"short_name": "PTM",
"description": "__MSG_description__",
"manifest_version": 2,
"version": "5.0.1",
"icons": {
"48": "img\/48.png",
"128": "img\/128.png"
},
"permissions": [
"bookmarks",
"storage",
"tabs"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"default_locale": "en",
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "img\/48.png",
"default_title": "Project Tab Manager",
"default_popup": "app.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+P",
"mac": "MacCtrl+P"
}
}
}
} | |