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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Find URLs |
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 } |