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 |
| Eメール | [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
} | |