Preview any link, anywhere - Link Preview

Preview links from across the web!

Τι είναι το Preview any link, anywhere - Link Preview;

Το Preview any link, anywhere - Link Preview είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον CodingLeo, και η κύρια λειτουργία του είναι "Preview links from across the web!".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Preview any link, anywhere - Link Preview

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

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

                        It's very simple to use, according to your settings preference you will be able to preview links from either hovering the link or clicking while holding a predefined key.
You can drag the preview around the screen and resize it at the corners.
This extension is currently in pre release, there are many functionalities coming. 

Don't waste time.
With LinkPreview you can read your news 10x faster. No ads, no sponsored articles and way less time to load the information that you want to read. Great part of the time for loading content on the internet comes from the browser taking time to paint images and content on the screen, with LinkPreview almost all of that time spent painting is gone, so you can access your content faster.

A safer way of browsing.
LinkPreview uses DOMPurify, which means every content previewed will be first cleaned to prevent XSS attacks. Cross-Site Scripting (XSS) attacks are a type of injection, in which malicious scripts are injected into otherwise benign and trusted websites.

SOON
1- Specific previews for social media links
2- Specific previews for e-commerce links
3- Preview shortened URL's

https://linkpreview.co

for business inquires: [email protected]                    

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

Όνομα Preview any link, anywhere - Link Preview Preview any link, anywhere - Link Preview
ID idalccinfigpohjpehkcdcpgnannhhfl
Επίσημο URL https://chromewebstore.google.com/detail/preview-any-link-anywhere/idalccinfigpohjpehkcdcpgnannhhfl
Περιγραφή Preview links from across the web!
Μέγεθος Αρχείου 217 KB
Αριθμός Εγκαταστάσεων 1,839
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2021-03-05
Ημερομηνία Δημοσίευσης 2020-11-14
Αξιολόγηση 2.71/5 Συνολικά 24 Αξιολογήσεις
Προγραμματιστής CodingLeo
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://linkpreview.co
Διεύθυνση URL της Σελίδας Βοήθειας https://linkpreview.co
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Preview any link, anywhere - Link Preview",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "Preview links from across the web!",
    "homepage_url": "https:\/\/linkpreview.co",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_title": "Link Preview Settings"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/inject\/main.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/inject\/helpers\/jquery.js",
                "src\/inject\/helpers\/hotkeys.js",
                "src\/inject\/helpers\/jqueryui.js",
                "src\/inject\/helpers\/helpers.js",
                "src\/inject\/helpers\/purify.js",
                "src\/inject\/helpers\/readability.js",
                "src\/inject\/helpers\/progress.js",
                "src\/inject\/websites.js",
                "src\/inject\/main.js"
            ]
        }
    ]
}