Linkparser
LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.
Linkparserคืออะไร?
Linkparser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย claneo-chrome-extensions และคุณลักษณะหลักของมันคือ "LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Linkparser
ดาวน์โหลดไฟล์ส่วนขยาย Linkparser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Linkpaser can differentiate the following type of links in order to count them or mark them on the webpage: internal links, internal dofollow links, internal nofollow links, subdomain links, subdomain dofollow links, subdomain nofollow links, external links, external dofollow links, extermal nofollow links. How Linkparser shows you the information it gathers is very much up to you. It is very customizable!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Linkparser |
ID | pmghbmgeolancmmnklifafgooobplifn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/linkparser/pmghbmgeolancmmnklifafgooobplifn |
คำอธิบาย | LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors. |
ขนาดไฟล์ | 71.54 KB |
จำนวนการติดตั้ง | 8,342 |
เวอร์ชันปัจจุบัน | 2.0.2 |
อัปเดตครั้งล่าสุด | 2024-02-06 |
วันที่เผยแพร่ | 2021-03-17 |
คะแนน | 4.05/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | claneo-chrome-extensions |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.claneo.com/de/linkparser/ |
URL หน้าช่วยเหลือ | https://www.claneo.com/de/linkparser/ |
URL หน้านโยบายความเป็นส่วนตัว | https://www.claneo.com/de/datenschutz |
ภาษาที่รองรับ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "service_worker": "background.js" }, "action": { "default_icon": "icon_64.png", "default_popup": "popup.html", "default_title": "" }, "content_scripts": [ { "all_frames": false, "js": [ "linkparser.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "default_locale": "en", "description": "__MSG_extension_description__", "homepage_url": "http:\/\/www.linkparser.com", "icons": { "128": "icon_64.png", "64": "icon_64.png" }, "manifest_version": 3, "name": "Linkparser", "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "activeTab", "storage" ], "version": "2.0.2" } |