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…

Vad är Copy & Paste?

Copy & Paste är en Chrome-tillägg utvecklad av gal.bogdan2015, och dess huvudfunktion är "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…".

Tilläggsskärmbilder

screenshot

Ladda ner Copy & Paste-förlängningens CRX-fil

Ladda ner Copy & Paste-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Copy & Paste Copy & Paste
ID oijiikmgkljldpbpddpmhiblpgkciobn
Officiell webbadress https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn
Beskrivning 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…
Filstorlek 81.47 KB
Antal Installationer 889
Aktuell Version 1.0
Senast Uppdaterad 2020-06-29
Publiceringsdatum 2020-06-28
Utvecklare gal.bogdan2015
E-post [email protected]
Betalningssätt free
Stödda Språk 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'"
}