Downloadyze — a Multiple Page Downloader

A simple downloader that can download multiple pages automatically. (Beta)

Τι είναι το Downloadyze — a Multiple Page Downloader;

Το Downloadyze — a Multiple Page Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Roy Six, και η κύρια λειτουργία του είναι "A simple downloader that can download multiple pages automatically. (Beta)".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Downloadyze — a Multiple Page Downloader

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

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

                        Downloadyze is an extension in beta that can download simple files from a single page or multiple pages automatically. It supports 4 Multi Actions and 7 Download Strategies to help you pick which URLs to download. You can also enter regular expression/text filters to further include or exclude URLs to download. Downloadyze also understands both CSS Selectors and XPath expressions for many tasks, such as finding next links and filtering URLs.

I want you to be 100% happy with Downloadyze
If something isn't working right, or if there's a feature you think is missing, please feel free to open an issue on GitHub and give me a chance to fix it and I promise I will. Thank you so much for using Downloadyze.

Features
- Supports both Single Page and Multi Page Downloading
- Auto Multi Page Downloading
- 4 Multi Actions: Next Link, Increment URL, Click Button, and URL List
- 7 Download Strategies: File Extensions, Tags, Attributes, Selector, XPath, All URLs, and Web Page
- URL Includes and URL Excludes text filters (Regular Expressions)
- Subfolder options, including the ability to download each page's files in its own subfolder
- Download Preview Table that automatically updates based on your changes
- Keyboard Shortcuts (When enabled)
- No Ads, No Tracking, No Bloat

Permissions Justification
- "Read and change all your data on the websites you visit" - Downloadyze needs to request this permission so that it can download files from multiple pages automatically (essentially, so it can run its content script automatically on the pages you want it to).
- "Manage your downloads" - Downloadyze needs to request this permission so it can download files.

Privacy Policy
Downloadyze does *not* track you. It does *not* use analytic services. It does *not* collect any data from your device or computer. All your data is stored locally on your device. Your data is *your* data.                    

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

Όνομα Downloadyze — a Multiple Page Downloader Downloadyze — a Multiple Page Downloader
ID bhmadppkfhoofholcdndbcodfomajacf
Επίσημο URL https://chromewebstore.google.com/detail/downloadyze-%E2%80%94-a-multiple/bhmadppkfhoofholcdndbcodfomajacf
Περιγραφή A simple downloader that can download multiple pages automatically. (Beta)
Μέγεθος Αρχείου 214 KB
Αριθμός Εγκαταστάσεων 1,793
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2022-02-06
Ημερομηνία Δημοσίευσης 2022-01-19
Αξιολόγηση 4.50/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Roy Six
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sixcious/downloadyze
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sixcious/downloadyze/wiki/Help
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/sixcious/info/wiki/Privacy-Policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "short_name": "__MSG_short_name__",
    "description": "__MSG_description__",
    "version": "0.2",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "browser_action": {
        "default_title": "__MSG_title__",
        "default_icon": {
            "16": "img\/icon.png",
            "24": "img\/icon.png",
            "32": "img\/icon.png"
        },
        "default_popup": "html\/popup.html"
    },
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/promisify.js",
            "js\/increment.js",
            "js\/auto.js",
            "js\/action.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "commands": {
        "download": {
            "description": "Download"
        },
        "stop": {
            "description": "Stop"
        },
        "return": {
            "description": "Return to start"
        },
        "auto": {
            "description": "Auto pause or resume"
        },
        "multi1": {
            "description": "Multi Action Primary"
        },
        "multi2": {
            "description": "Multi Action Secondary"
        }
    },
    "permissions": [
        "",
        "downloads",
        "storage"
    ],
    "minimum_chrome_version": "77"
}