Link Roamer
A browser extension for gathering, organizing, and inspecting all the links on a web page.
Τι είναι το Link Roamer;
Το Link Roamer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://linkroamer.com, και η κύρια λειτουργία του είναι "A browser extension for gathering, organizing, and inspecting all the links on a web page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Link Roamer
Λήψη αρχείων επέκτασης Link Roamer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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\/*"
]
} | |