Aria2 Integration Extension

Please Properly setup Aria2 before using this extension. Features - Replace browser default download manager with Aria2 - Add,…

Aria2 Integration Extension क्या है?

Aria2 Integration Extension z.l द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Please Properly setup Aria2 before using this extension. Features - Replace browser default download manager with Aria2 - Add,…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Aria2 Integration Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Please Properly setup Aria2 before using this extension.

Features

- Replace browser default download manager with Aria2
- Add, start, pause and stop jobs in extension tab
- Trigger download with right click context menu
- Allow more operations with integrated AriaNg
- Custom configuration allows instance other than default aria2 domains & ports
- Third party scripts support, allow user to add scripts using integrated editor. (Remove since 0.5.0)

## Scripts

>This feature is removed after **0.5.0** due to manifest 3 does not allow arbitrary code execution per [guideline](https://developer.chrome.com/docs/extensions/develop/migrate/improve-security).

The new script extension allows user to download certain resources on websites without going into page source manually. 

### Example

```
(async function (url) {
    'use strict';

    try {
        const res = await fetch(url);
        if (res.ok) {
          	const data = await res.text();
            const parser = new DOMParser();
            const doc = parser.parseFromString(data, "text/html");
            const matches = doc.querySelector("");
            return matches.src;
        } 
    } catch (error) {
        console.error(error);
    }
})();
```

With the input url as a parameter, user should be able to implement scripts utilize xPath or query selector to find out media sources or batch images on define domains and download all automatically in batch.

Submit Issues Please submit issues if you encounter any problems here (https://github.com/zluo01/aria2-extension/issues) Reference - https://github.com/aria2/aria2 - https://github.com/mayswind/AriaNg - https://github.com/sonnyp/aria2.js/ - https://github.com/RossWang/Aria2-Integration

एक्सटेंशन की मूल जानकारी

नाम Aria2 Integration Extension Aria2 Integration Extension
ID chehmbmmchaagpilhabnocngnmjllgfi
आधिकारिक URL https://chromewebstore.google.com/detail/aria2-integration-extensi/chehmbmmchaagpilhabnocngnmjllgfi
विवरण Please Properly setup Aria2 before using this extension. Features - Replace browser default download manager with Aria2 - Add,…
फ़ाइल का आकार 1.1 MB
स्थापना संख्या 104
वर्तमान संस्करण 0.5.1
अंतिम अपडेट 2024-02-22
प्रकाशन तिथि 2021-06-16
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर z.l
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/zluo01/aria2-extension
सहायता पृष्ठ URL https://github.com/zluo01/aria2-extension/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Aria2 Integration Extension",
    "version": "0.5.1",
    "icons": {
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "notifications",
        "storage",
        "downloads",
        "webRequest",
        "webRequestBlocking"
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "background": {
        "service_worker": "background\/index.js",
        "type": "module"
    },
    "commands": {
        "open_detail": {
            "description": "Open AriaNg"
        }
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Aria2Ex"
    },
    "options_ui": {
        "page": "index.html#\/setting",
        "open_in_tab": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{9e3f5f09-a4c6-43c2-8715-cac81530a5ce}"
        }
    }
}