Linkparser
LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.
Linkparser là gì?
Linkparser là một tiện ích mở rộng Chrome được phát triển bởi claneo-chrome-extensions, và tính năng chính của nó là "LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.".
Ả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 Linkparser
Tải xuống các tệp mở rộng Linkparser 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
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Linkparser |
ID | pmghbmgeolancmmnklifafgooobplifn |
URL Chính Thức | https://chromewebstore.google.com/detail/linkparser/pmghbmgeolancmmnklifafgooobplifn |
Mô tả | LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors. |
Kích Thước Tệp | 71.54 KB |
Số Lần Cài Đặt | 8,342 |
Phiên Bản Hiện Tại | 2.0.2 |
Cập Nhật Lần Cuối | 2024-02-06 |
Ngày Phát Hành | 2021-03-17 |
Đánh Giá | 4.05/5 Tổng số 21 Đánh Giá |
Nhà Phát Triển | claneo-chrome-extensions |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.claneo.com/de/linkparser/ |
URL Trang Trợ Giúp | https://www.claneo.com/de/linkparser/ |
URL Trang Chính Sách Bảo Mật | https://www.claneo.com/de/datenschutz |
Ngôn Ngữ Được Hỗ Trợ | 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" } |