Link Locator
Simply presents all the links in the current website
Link Locator là gì?
Link Locator là một tiện ích mở rộng Chrome được phát triển bởi sharon.medianmrkt, và tính năng chính của nó là "Simply presents all the links in the current website".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Link Locator
Tải xuống các tệp mở rộng Link Locator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Link Locator is a browser extension that makes it easy for users to access all of the links on a website. With just a single click, the extension opens a pop-up window containing a list of all the links on the current webpage. This can be useful for websites with a large number of links, as it allows users to easily find and navigate to the content they are interested in. Link Locator also helps users discover new and interesting content on a website that they may not have been aware of before. Simply install the extension and click the icon to open the link list whenever you need it.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ljfclipbaplebpphafkaihekkkaeabnh |
URL Chính Thức | https://chrome.google.com/webstore/detail/link-locator/ljfclipbaplebpphafkaihekkkaeabnh |
Mô tả | Simply presents all the links in the current website |
Kích Thước Tệp | 16.06 KB |
Số Lần Cài Đặt | 7,128 |
Phiên Bản Hiện Tại | 1 |
Cập Nhật Lần Cuối | 2022-12-28 |
Ngày Phát Hành | 2022-12-28 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | sharon.medianmrkt |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://home.entunedanludb.com/ |
URL Trang Trợ Giúp | https://home.entunedanludb.com/contact.html |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "logo.png", "default_title": "Link Locator", "default_popup": "popup.html" }, "description": "Simply presents all the links in the current website", "icons": { "128": "logo.png" }, "manifest_version": 3, "name": "Link Locator", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "icons\/*.svg" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "host_permissions": [ "*:\/\/*\/*" ] } |