Copy & Paste

The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…

Co to jest Copy & Paste?

Copy & Paste to rozszerzenie Chrome opracowane przez gal.bogdan2015, a jego główną funkcją jest „The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Copy & Paste

Pobierz pliki rozszerzeń Copy & Paste 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

                        The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them.

Save the data you need with one click by simply copying it.

Just use Ctrl+c.                    

Podstawowe informacje o rozszerzeniu

Nazwa Copy & Paste Copy & Paste
ID oijiikmgkljldpbpddpmhiblpgkciobn
Oficjalny URL https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn
Opis The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
Rozmiar pliku 81.47 KB
Liczba instalacji 889
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-06-29
Data Publikacji 2020-06-28
Deweloper gal.bogdan2015
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",
    "name": "Copy & Paste",
    "version": "1.0",
    "icons": {
        "32": "img\/logo32.png",
        "48": "img\/logo48.png"
    },
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "*:\/\/fonts.googleapis.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.2.1.min.js",
            "js\/libs\/safeResponse.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/oncopy.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Copy & Paste",
        "default_icon": "img\/logo64.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}