Copy Download Links

Makes it posible to copy k2s, uploaded and rapidgator links. If all links already exist in clipboard, close the tabs

Co to jest Copy Download Links?

Copy Download Links to rozszerzenie Chrome opracowane przez https://hersing.dk, a jego główną funkcją jest „Makes it posible to copy k2s, uploaded and rapidgator links. If all links already exist in clipboard, close the tabs”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Copy Download Links

Pobierz pliki rozszerzeń Copy Download Links 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

                        Makes it possible to copy k2s, uploaded and rapidgator links from open tabs. 
If all links already exist in clipboard the the tabs will be closed

It's possible to add additional sites on the settings page                    

Podstawowe informacje o rozszerzeniu

Nazwa Copy Download Links Copy Download Links
ID jjgkfhljjohoiljkeepbaghaenmmmaaf
Oficjalny URL https://chromewebstore.google.com/detail/copy-download-links/jjgkfhljjohoiljkeepbaghaenmmmaaf
Opis Makes it posible to copy k2s, uploaded and rapidgator links. If all links already exist in clipboard, close the tabs
Rozmiar pliku 33.73 KB
Liczba instalacji 545
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2022-05-31
Data Publikacji 2019-04-22
Deweloper https://hersing.dk
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Download Links",
    "version": "2.0.0",
    "description": "Makes it posible to copy k2s, uploaded and rapidgator links. If all links already exist in clipboard, close the tabs",
    "icons": {
        "48": "umbrella_48.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "clipboardRead",
        "storage"
    ],
    "action": {
        "default_icon": "umbrella_32.png",
        "default_title": "Copy Download Links"
    },
    "background": {
        "service_worker": "copy-download-links.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html"
}