Convert To Popup
Converts the current tab or link to a popup window
什么是Convert To Popup?
Convert To Popup是由rawbytz开发的Chrome扩展程序,该扩展的主要功能是“Converts the current tab or link to a popup window”。
扩展截图
下载Convert To Popup扩展crx文件
下载Convert To Popup扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
• Popup windows have no tabs, address bar, or bookmarks bar.
• Click the toolbar icon to convert the current tab into a Popup window.
• Assign a keyboard shortcut at the bottom of chrome://extensions to do the same.
• Right Click links to open them in a new Popup window.
• No persistent memory footprint. 扩展基本信息
| 名称 | |
| ID | ipbclffpmnocdigdcpmahfmdlibcggal |
| 官方URL | https://chromewebstore.google.com/detail/convert-to-popup/ipbclffpmnocdigdcpmahfmdlibcggal |
| 简介 | Converts the current tab or link to a popup window |
| 文件大小 | 7.13 KB |
| 安装次数 | 1,409 |
| 当前版本 | 1.6 |
| 更新时间 | 2018-03-07 |
| 上架时间 | 2018-03-07 |
| 评分 | 4.36/5 共11次评分 |
| 开发者 | rawbytz |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Convert To Popup",
"version": "1.6",
"description": "Converts the current tab or link to a popup window",
"browser_action": {
"default_icon": "convert2Popup_128.png",
"default_title": "Convert to Popup"
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"icons": {
"128": "convert2Popup_128.png"
},
"permissions": [
"contextMenus",
"activeTab"
],
"manifest_version": 2
} | |