Ed2k&MagnetHelper

It helps you to deal with ed2k/magnet links, with functions of select range and filename search.

Τι είναι το Ed2k&MagnetHelper;

Το Ed2k&MagnetHelper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον JAS, και η κύρια λειτουργία του είναι "It helps you to deal with ed2k/magnet links, with functions of select range and filename search.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Ed2k&MagnetHelper

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

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

                        When there are a lot of Ed2k and Magnet links in a page, it is always a hassle to sort out the links you really need. Or there are times when you are only allowed to copy 50 links using downloading service like Thunder Offline Download. All you need is a convenient tool to help you sort and copy Ed2k and Magnet links!

Functions:
1.Obtain Ed2k links from a page automatically;
2.Select range using numbers given to links;
3.Search filename with keywords

Tested on sites such as YYET, Verycd, Simplecd, Goubo.io

Unknowingly, we have passed the tenth anniversary together, and will continue to provide services to everyone. If you have any bugs or suggestions, please submit them to the github issue page.

Update to 4.3 !
4.3:
    Fix the problem of magnet under certain websites
4.2:
    Copy to pasteboard when clicked, Give priority to tabs with data
4.1:
    Fix the problems that the magnet cannot get the name and the list is duplicated. Fix the refresh problem of ed2k under asynchronous
4.0:
    Refactored all the code, new interface! Supports manual refresh of asynchronous web pages! For the tenth anniversary, thank you for your long-term support!
3.4:
   add mp4 vod support!
3.3:
   fix magnet copy undefined error
3.2:
    fix magnet error, just merge from github, no check
3.1:
    Added Magnet links support!
2.1: 
    Added functions of copy and paste to clipboard. Copied links can be viewed at the same time.
    Upgraded manifest.
    Support il8n in English.
    Enhanced interface with twitter bootstrap.                    

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

Όνομα Ed2k&MagnetHelper Ed2k&MagnetHelper
ID kmeeplonmihpchdbfccgmjhcnpecbppk
Επίσημο URL https://chrome.google.com/webstore/detail/ed2kmagnethelper/kmeeplonmihpchdbfccgmjhcnpecbppk
Περιγραφή It helps you to deal with ed2k/magnet links, with functions of select range and filename search.
Μέγεθος Αρχείου 483 KB
Αριθμός Εγκαταστάσεων 8,931
Τρέχουσα Έκδοση 4.3
Τελευταία Ενημέρωση 2022-01-10
Ημερομηνία Δημοσίευσης 2020-10-10
Αξιολόγηση 4.18/5 Συνολικά 49 Αξιολογήσεις
Προγραμματιστής JAS
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/reducm/Ed2kChromePlugin
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/reducm/Ed2kChromePlugin
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "version": "4.3",
    "manifest_version": 3,
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "19": "assets\/icon19.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "__MSG_extension_name__",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "19": "assets\/icon19.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "tabs",
        "unlimitedStorage",
        "clipboardRead",
        "clipboardWrite",
        "notifications"
    ],
    "homepage_url": "https:\/\/github.com\/reducm\/Ed2kChromePlugin",
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}