Link Locator
Simply presents all the links in the current website
Link Locatorคืออะไร?
Link Locator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sharon.medianmrkt และคุณลักษณะหลักของมันคือ "Simply presents all the links in the current website"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link Locator
ดาวน์โหลดไฟล์ส่วนขยาย Link Locator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ljfclipbaplebpphafkaihekkkaeabnh |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/link-locator/ljfclipbaplebpphafkaihekkkaeabnh |
คำอธิบาย | Simply presents all the links in the current website |
ขนาดไฟล์ | 16.06 KB |
จำนวนการติดตั้ง | 7,128 |
เวอร์ชันปัจจุบัน | 1 |
อัปเดตครั้งล่าสุด | 2022-12-28 |
วันที่เผยแพร่ | 2022-12-28 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | sharon.medianmrkt |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://home.entunedanludb.com/ |
URL หน้าช่วยเหลือ | https://home.entunedanludb.com/contact.html |
ภาษาที่รองรับ | 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": [ "*:\/\/*\/*" ] } |