Link Roamer

A browser extension for gathering, organizing, and inspecting all the links on a web page.

Link Roamer란 무엇입니까?

Link Roamer은(는) https://linkroamer.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension for gathering, organizing, and inspecting all the links on a web page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Link Roamer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        1. Inspect links
- Highlight broken links on a page (i.e. 404)
- Highlight non-secure links on a page (i.e. http)
- Quickly find, view, organize, and navigate links on a page
- See the status and reasoning for requests that don't succed
- View links and where they redirect to before navigating

2. Organize links
- Group links by their primary domain name
- Create a tab group from a set of selected links
- Save a set of selected links as bookmarks

3. Interact with links
- Copy links to clipboard
- Open links in a new window or tab
- Open individual links in a background tab
- Export links as `json`, `text`, or `csv`
- Export detailed URL and fetch request data

---

Open source
This extension is open source and doesn't collect any information from users. You can inspect the source fode at https://github.com/rossmoody/link-roamer. It's free, and made available because I like making useful things for the web. Please consider contributing with an idea, bug fix, or feature request on GitHub.                    

확장 프로그램 기본 정보

이름 Link Roamer Link Roamer
ID lgcgflalbmeodapiohjepkjlgipmhofe
공식 URL https://chromewebstore.google.com/detail/link-roamer/lgcgflalbmeodapiohjepkjlgipmhofe
설명 A browser extension for gathering, organizing, and inspecting all the links on a web page.
파일 크기 351 KB
설치 횟수 182
현재 버전 1.2.0
최근 업데이트 2022-04-26
출시 날짜 2022-04-06
평점 5.00/5 총 2 개의 평점
개발자 https://linkroamer.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.linkroamer.com
도움말 페이지 URL https://github.com/rossmoody/link-roamer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Link Roamer",
    "version": "1.2.0",
    "description": "A browser extension for gathering, organizing, and inspecting all the links on a web page.",
    "homepage_url": "https:\/\/www.linkroamer.com",
    "permissions": [
        "activeTab",
        "scripting",
        "tabGroups",
        "bookmarks",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "public\/icons\/production\/16.png",
            "24": "public\/icons\/production\/24.png",
            "32": "public\/icons\/production\/32.png"
        },
        "default_popup": "public\/index.html"
    },
    "icons": {
        "48": "public\/icons\/production\/48.png",
        "64": "public\/icons\/production\/64.png",
        "128": "public\/icons\/production\/128.png",
        "256": "public\/icons\/production\/256.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+U",
                "mac": "Command+U"
            }
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "public\/onboarding.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/fetch-fav-h57lsidp3a-uc.a.run.app\/*"
    ]
}