Copy All Urls
Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.
什么是Copy All Urls?
Copy All Urls是由Vincent Paré开发的Chrome扩展程序,该扩展的主要功能是“Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.”。
扩展截图
下载Copy All Urls扩展crx文件
下载Copy All Urls扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Two features :
- Copy all opened tabs URL into clipboard. 4 formats available : Text, HTML, JSON and custom format.
- Paste to open all URLs in the clipboard into new tabs.
You can use keyboard shortcuts and copy only selected tabs. 扩展基本信息
| 名称 | |
| ID | djdmadneanknadilpjiknlnanaolmbfk |
| 官方URL | https://chromewebstore.google.com/detail/copy-all-urls/djdmadneanknadilpjiknlnanaolmbfk |
| 简介 | Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go. |
| 文件大小 | 128 KB |
| 安装次数 | 317,430 |
| 当前版本 | 2.11 |
| 更新时间 | 2021-06-02 |
| 上架时间 | 2015-01-25 |
| 评分 | 4.61/5 共401次评分 |
| 开发者 | Vincent Paré |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://vincepare.github.io/CopyAllUrl_Chrome/ |
| 帮助页面URL | https://github.com/vincepare/CopyAllUrl_Chrome/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"browser_action": {
"default_icon": "img\/umbrella_19.png",
"default_title": "Copy URLs to clipboard",
"default_popup": "popup.html"
},
"description": "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.",
"icons": {
"128": "img\/umbrella_128.png"
},
"background": {
"scripts": [
"vendor\/jquery-1.7.2_min.js",
"vendor\/encoder.js",
"background.js"
]
},
"commands": {
"copy": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Copy"
},
"paste": {
"suggested_key": {
"default": "Alt+V"
},
"description": "Paste"
}
},
"name": "Copy All Urls",
"options_page": "options.html",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"clipboardRead",
"clipboardWrite",
"notifications"
],
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"version": "2.11",
"manifest_version": 2
} | |