Send To Maxel

Add files to Maxel (Mac OS X Download Manager) directly from Chrome.

Co to jest Send To Maxel?

Send To Maxel to rozszerzenie Chrome opracowane przez https://maxelapp.com, a jego główną funkcją jest „Add files to Maxel (Mac OS X Download Manager) directly from Chrome.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Send To Maxel

Pobierz pliki rozszerzeń Send To Maxel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Send downloads directly to Maxel from Chrome! Automatically download files over a certain size in Maxel, or open the current page in Maxel's built-in browser. You can also select links you want to download, right-click, and choose "Download selected links in Maxel"

Maxel is a native download manager for Mac OS X. It manages and speeds up downloads. Learn more at http://maxelapp.com                    

Podstawowe informacje o rozszerzeniu

Nazwa Send To Maxel Send To Maxel
ID chgjmjbmaokmnccgmbfhlhhmnckhndcb
Oficjalny URL https://chromewebstore.google.com/detail/send-to-maxel/chgjmjbmaokmnccgmbfhlhhmnckhndcb
Opis Add files to Maxel (Mac OS X Download Manager) directly from Chrome.
Rozmiar pliku 45.95 KB
Liczba instalacji 380
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2018-02-20
Data Publikacji 2018-02-20
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper https://maxelapp.com
Typ Płatności free
Strona Rozszerzenia http://maxelapp.com
Adres URL Strony Pomocy http://maxelapp.com/browsers.html
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Send To Maxel",
    "description": "Add files to Maxel (Mac OS X Download Manager) directly from Chrome.",
    "version": "2.0",
    "permissions": [
        "tabs",
        "contextMenus",
        "downloads",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/lib.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "js\/lib.js",
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "img\/action_icon_19.png",
            "38": "img\/action_icon_38.png"
        },
        "default_title": "Download To Maxel",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "img\/icon_16x16.png",
        "128": "img\/icon_128x128.png"
    },
    "web_accessible_resources": [
        "img\/*.png",
        "js\/*.js",
        "html\/popup.html"
    ]
}