Click2Clip

Copy to clipboard with just one click.

Vad är Click2Clip?

Click2Clip är en Chrome-tillägg utvecklad av https://www.garralab.com, och dess huvudfunktion är "Copy to clipboard with just one click.".

Tilläggsskärmbilder

screenshot

Ladda ner Click2Clip-förlängningens CRX-fil

Ladda ner Click2Clip-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

                        Copy text or html directly to your clipboard. Just point the paragraph you need and click. Keyboard shortcuts fully configurable.                    

Grundläggande Information om Tillägg

Namn Click2Clip Click2Clip
ID dlmmpimngmepcekphcblhkdpoghdcnee
Officiell webbadress https://chromewebstore.google.com/detail/click2clip/dlmmpimngmepcekphcblhkdpoghdcnee
Beskrivning Copy to clipboard with just one click.
Filstorlek 106 KB
Antal Installationer 226
Aktuell Version 1.6
Senast Uppdaterad 2017-01-26
Publiceringsdatum 2017-01-26
Betyg 4.00/5 Totalt 2 Betyg
Utvecklare https://www.garralab.com
Betalningssätt free
Tilläggswebbplats http://www.garralab.com/click2clip.php
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "name": "Click2Clip",
    "version": "1.6",
    "manifest_version": 2,
    "description": "Copy to clipboard with just one click.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-1.7.min.js",
                "js\/click2clip.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Click2Clip",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        ""
    ]
}