Download with FlashGet™

Optionally send your downloading jobs to the well-known FlashGet™ download manager

Τι είναι το Download with FlashGet™;

Το Download with FlashGet™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον joue.quroi, και η κύρια λειτουργία του είναι "Optionally send your downloading jobs to the well-known FlashGet™ download manager".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Download with FlashGet™

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

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

                        This extension adds a toolbar button to your browser which integrates the well-known FlashGet™ download manager to your browser. There are two modes of operation:
1. Right-click menu item to send links, images, and videos to FlashGet.
2. Interruption mode: in this mode, the extension interrupts the built-in download manager and send the downloading job to FlashGet download manager (you need to enable this mode by left-clicking the toolbar button first).

Notes:
1. For the extension to work you need to have FlashGet (1.X like v1.73, or v1.9.6.1073) installed.

2. FlashGet versions 3.x do not support command-line options and hence are not supported.

3. For the extension to be able to start FlashGet and communicate with it, a small native client is required. I am using the native integration by @belaviyo (https://github.com/belaviyo/native-client/releases). It is a simple NodeJS open-source native integrator.

--- Legal
FlashGet is a trademark of Trend Media Corporation Limited, registered in the U.S. and other countries. This extension is an independent project aims to ease the integration and has no relationship to the FlashGet or Trend Media Corporation Limited.                    

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

Όνομα Download with FlashGet™ Download with FlashGet™
ID gecfhmlaldelfoeahjahajoooenmnlnd
Επίσημο URL https://chromewebstore.google.com/detail/download-with-flashget/gecfhmlaldelfoeahjahajoooenmnlnd
Περιγραφή Optionally send your downloading jobs to the well-known FlashGet™ download manager
Μέγεθος Αρχείου 82.52 KB
Αριθμός Εγκαταστάσεων 11,020
Τρέχουσα Έκδοση 0.2.1
Τελευταία Ενημέρωση 2023-05-08
Ημερομηνία Δημοσίευσης 2020-02-27
Αξιολόγηση 3.57/5 Συνολικά 23 Αξιολογήσεις
Προγραμματιστής joue.quroi
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/download-with.html?from=flashget
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/download-with.html?from=flashget
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Download with FlashGet\u2122",
    "description": "Optionally send your downloading jobs to the well-known FlashGet\u2122 download manager",
    "version": "0.2.1",
    "permissions": [
        "storage",
        "nativeMessaging",
        "notifications",
        "downloads",
        "contextMenus",
        "scripting"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": [],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/download-with.html?from=flashget",
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/grab\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": []
    }
}