Find URLs
Get a clickable list and a copy button of all URLs on the current page.
什么是Find URLs?
Find URLs是由hawks.theorem开发的Chrome扩展程序,该扩展的主要功能是“Get a clickable list and a copy button of all URLs on the current page.”。
扩展截图
下载Find URLs扩展crx文件
下载Find URLs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Click the "Find URLs" icon next to the address bar and get a list over all the URLs used on the current website.
You will be able to click on the links and copy or download a list of all the URLs.
Credits:
Photo by Chase Clark on Unsplash
Icons made by "https://www.flaticon.com/authors/alfredo-hernandez"
https://www.npmjs.com/package/valid-url 扩展基本信息
| 名称 | |
| ID | mbaojfojmofmeipeclfbkeghnfmkmbjl |
| 官方URL | https://chromewebstore.google.com/detail/find-urls/mbaojfojmofmeipeclfbkeghnfmkmbjl |
| 简介 | Get a clickable list and a copy button of all URLs on the current page. |
| 文件大小 | 13.49 KB |
| 安装次数 | 29 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2019-10-22 |
| 上架时间 | 2019-10-21 |
| 开发者 | hawks.theorem |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Find URLs",
"version": "1.0.0",
"description": "Get a clickable list and a copy button of all URLs on the current page.",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_title": "Find URLs!",
"default_icon": {
"16": "www16.png",
"32": "www32.png",
"64": "www64.png",
"128": "www128.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "www16.png",
"32": "www32.png",
"64": "www64.png",
"128": "www128.png"
},
"permissions": [
"declarativeContent",
"activeTab"
],
"manifest_version": 2
} | |