delugesiphon

Send torrent links to your Deluge server.

Τι είναι το delugesiphon;

Το delugesiphon είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sbussetti.github.io/deluge-siphon, και η κύρια λειτουργία του είναι "Send torrent links to your Deluge server.".

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

screenshot

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

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

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

                        To report an issue, please visit my GitHub Issues page: https://github.com/sbussetti/deluge-siphon .  The reviews section of the webstore is not a good place to leave feedback about specific issues if you would like them to be resolved.  

This extension is an incredibly simple Deluge adder that allows you to send torrent links to your Deluge server with just a click from Google's most excellent Chrome browser.

Works with link and cookie based tracker authentication and supports magnet links, which should cover every kind of tracker and torrent out there.

Please keep in mind, Deluge did not support magnet links until 1.3.3 so if you want to use this extension for adding magnet links you MUST upgrade your Deluge server.

On Github: https://github.com/sbussetti/deluge-siphon                    

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

Όνομα delugesiphon delugesiphon
ID gabdloknkpdefdpkkibplcfnkngbidim
Επίσημο URL https://chromewebstore.google.com/detail/delugesiphon/gabdloknkpdefdpkkibplcfnkngbidim
Περιγραφή Send torrent links to your Deluge server.
Μέγεθος Αρχείου 560 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 0.72.6
Τελευταία Ενημέρωση 2018-12-25
Ημερομηνία Δημοσίευσης 2018-12-25
Αξιολόγηση 4.00/5 Συνολικά 102 Αξιολογήσεις
Προγραμματιστής https://sbussetti.github.io/deluge-siphon
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sbussetti/deluge-siphon
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sbussetti/deluge-siphon/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "delugesiphon",
    "short_name": "delugesiphon",
    "version": "0.72.6",
    "default_locale": "en",
    "description": "Send torrent links to your Deluge server.",
    "homepage_url": "http:\/\/sbussetti.github.io\/deluge-siphon\/",
    "author": "sbussetti",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "defaultTitle": "delugesiphon",
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "ftp:\/\/*\/*",
        "file:\/\/*\/*",
        "cookies",
        "contextMenus",
        "notifications"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content.min.js"
            ],
            "css": [
                "content.min.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.min.js"
        ]
    },
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.gif",
        "lib\/images\/*.png"
    ]
}