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" } |