Copy Trim

This extension remove white spaces before and after the copy

Vad är Copy Trim?

Copy Trim är en Chrome-tillägg utvecklad av galvish, och dess huvudfunktion är "This extension remove white spaces before and after the copy".

Ladda ner Copy Trim-förlängningens CRX-fil

Ladda ner Copy Trim-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

                                            

Grundläggande Information om Tillägg

Namn Copy Trim Copy Trim
ID jgmiikpncidgpcmbpafdkjkfamjnilln
Officiell webbadress https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln
Beskrivning This extension remove white spaces before and after the copy
Filstorlek 8.05 KB
Antal Installationer 128
Aktuell Version 0.0.3
Senast Uppdaterad 2017-06-26
Publiceringsdatum 2017-06-26
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare galvish
Betalningssätt free
Tilläggswebbplats https://github.com/GalVishnevsky/CopyTrim
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Trim",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "This extension remove white spaces before and after the copy",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "src\/bg\/popup.html"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/oncopy.js"
            ]
        }
    ]
}