Link Klipper - Extract all links

Extract all links on a webpage and export them to a file.

Τι είναι το Link Klipper - Extract all links;

Το Link Klipper - Extract all links είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Codebox, και η κύρια λειτουργία του είναι "Extract all links on a webpage and export them to a file.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Link Klipper - Extract all links

Λήψη αρχείων επέκτασης Link Klipper - Extract all links σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Link Klipper is a simple yet very powerful chrome extension which helps you extract all the links on a webpage and export them to a file. No more hassle to copy each link from a webpage and store it individually.

This extension allows you to :
- Extract all the links on the webpage
- Store all the extracted links as a CSV file
- Custom drag a selectable area on the webpage from which all the links will be extracted

This plugin will add a right click context menu to your browser. By right clicking on any part of the webpage, you will be able to access the options under the context menu entry "Link Klipper - Extract Links"

Applications :
  
- For people who work in the SEO industry, you can quickly collect a group of links on the page
- While browsing through images on any page, you can download the target links of all the images
- While researching online, you can gather useful resourceful links and store them for future reference to a CSV file 

Any recommendations, feature enhancements or bug reports please contact us at [email protected] and we will make sure to have them all added/rectified in our next release as soon as possible. There is also a Donation tab on the Options page if you wish to donate to us which will help us give you guys a good support and keep adding new interesting  features and enhancements.

Happy Link Klipping :)

About us:

Codebox is a software development company offering offshore consulting, outsourcing and expertise in Web application development, Mobile applications and Chrome extensions.

Email - [email protected]
Website - www.codebox.in
Facebook - www.facebook.com/codeboxindia                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Link Klipper - Extract all links Link Klipper - Extract all links
ID fahollcgofmpnehocdgofnhkkchiekoo
Επίσημο URL https://chromewebstore.google.com/detail/link-klipper-extract-all/fahollcgofmpnehocdgofnhkkchiekoo
Περιγραφή Extract all links on a webpage and export them to a file.
Μέγεθος Αρχείου 990 KB
Αριθμός Εγκαταστάσεων 74,857
Τρέχουσα Έκδοση 2.7
Τελευταία Ενημέρωση 2023-11-28
Ημερομηνία Δημοσίευσης 2020-09-17
Αξιολόγηση 4.17/5 Συνολικά 187 Αξιολογήσεις
Προγραμματιστής Codebox
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.codebox.in/products/linkklipper
URL της Σελίδας Πολιτικής Απορρήτου https://codebox.in/products/linkklipper/privacy-policy.html
Υποστηριζόμενες Γλώσσες en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "2.7",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "background": {
        "service_worker": "js\/Background.js"
    },
    "options_page": "pages\/options.html",
    "icons": {
        "16": "images\/klipper-small-logo.png",
        "48": "images\/klipper-small-logo.png",
        "128": "images\/klipper-small-logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/Core.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": "images\/klipper-small-logo.png",
        "default_title": "Link Klipper Old: Extract the links of this page to a CSV",
        "default_popup": "pages\/popup.html"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ]
}