Magnet Links

Open Magnet Links in Put.io

Τι είναι το Magnet Links;

Το Magnet Links είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://girlfriend.technology, και η κύρια λειτουργία του είναι "Open Magnet Links in Put.io".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Magnet Links

Λήψη αρχείων επέκτασης Magnet Links σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Tired of having issues when you try to open a magnet link? This extension helps by adjusting the links to go through Put.io, to your clipboard, or to any URL you want.

You know how urls start with http:// or https://? Well, some start with `magnet:` and by default most devices do not know how to handle this. Magnet Links lets you choose how you want these urls handled.

This app is not affiliated with Put.io

- - - - -

Hello there, for a sample for what this extension does visit this page and try to click on the URLs before using the extension and after using the extension.
https://girlfriend.technology/magnet-examples/

For example, by default a Mac doesn't know what to do with a magnet link, which looks like this:

magnet:?xt=urn:btih:6H6NYFDC2NSTB5JGYHMUALXMSEALPOQY&dn=ubuntu-21.10-desktop-amd64.iso&xl=3116482560&tr=https%3A%2F%2Ftorrent.ubuntu.com%2Fannounce

what my extension does is prefixes it with a Put.io url

https://put.io/default/magnet?url=

so that Put.io can download the file for you.

So the final URL after my script runs should look like this:
https://put.io/default/magnet?url=magnet:?xt=urn:btih:6H6NYFDC2NSTB5JGYHMUALXMSEALPOQY&dn=ubuntu-21.10-desktop-amd64.iso&xl=3116482560&tr=https%3A%2F%2Ftorrent.ubuntu.com%2Fannounce

and when loaded Put.io will handle the download.                    

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

Όνομα Magnet Links Magnet Links
ID fkioalmkhgkhojppkapnidbnaecnnkfo
Επίσημο URL https://chromewebstore.google.com/detail/magnet-links/fkioalmkhgkhojppkapnidbnaecnnkfo
Περιγραφή Open Magnet Links in Put.io
Μέγεθος Αρχείου 284 KB
Αριθμός Εγκαταστάσεων 6,261
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2022-01-14
Ημερομηνία Δημοσίευσης 2021-12-14
Προγραμματιστής https://girlfriend.technology
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://girlfriend.technology/magnet-links
Διεύθυνση URL της Σελίδας Βοήθειας https://twitter.com/girlfriendtech
URL της Σελίδας Πολιτικής Απορρήτου https://girlfriend.technology/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "Magnet Links",
    "description": "Open Magnet Links in Put.io",
    "version": "1.2",
    "icons": {
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/index.html",
        "default_icon": {
            "16": "images\/toolbar-icon-16.png",
            "19": "images\/toolbar-icon-19.png",
            "32": "images\/toolbar-icon-32.png",
            "38": "images\/toolbar-icon-38.png"
        }
    },
    "permissions": [
        "storage"
    ]
}