Paste without spaces
Remove spaces and paste
Was ist Paste without spaces?
Paste without spaces ist eine Chrome-Erweiterung, die von Jérémy Petitseigneur entwickelt wurde, und ihr Hauptmerkmal ist "Remove spaces and paste".
Erweiterungsscreenshots
Paste without spaces-Erweiterungs-CRX-Datei herunterladen
Laden Sie Paste without spaces-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        Some website provides forms with strict validation rules. Instead of manually remove all spaces of a copied number (or text), this extension allows to paste it directly. Basic, but it saved me a lot of time at work, and i'm pretty sure it could be useful to someone else.
New in V2 : 
 - new settings : caps letters, url, emojis, ...
 - better support of iframe
 - lighter icon colors and simpler design
 - dark theme compliance
New in V2.5 : 
 - character detection visible in pop-up (and color used more informatively)
 - line-break function fixed
 - more welcoming installation page                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | kppdpnmdpdjckgihabenefhimmebobgc | 
| Offizielle URL | https://chromewebstore.google.com/detail/paste-without-spaces/kppdpnmdpdjckgihabenefhimmebobgc | 
| Beschreibung | Remove spaces and paste | 
| Dateigröße | 34.52 KB | 
| Installationsanzahl | 2,146 | 
| Aktuelle Version | 2.4 | 
| Letztes Update | 2020-12-04 | 
| Veröffentlichungsdatum | 2020-02-27 | 
| Bewertung | 5.00/5 Insgesamt 8 Bewertungen | 
| Entwickler | Jérémy Petitseigneur | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | http://www.ldlcible.com/nospace/index.html | 
| Unterstützte Sprachen | de,en,fr,nl,es,it,ru | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "2.4",
    "author": "J\u00e9r\u00e9my Petitseigneur",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/www.ldlcible.com\/nospace\/index.html",
    "icons": {
        "16": "icons\/logo-16.png",
        "32": "icons\/logo-32.png",
        "48": "icons\/logo-48.png",
        "96": "icons\/logo-96.png",
        "128": "icons\/logo-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "clipboardRead",
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/logo-16.png",
            "32": "icons\/logo-32.png",
            "48": "icons\/logo-48.png",
            "96": "icons\/logo-96.png"
        },
        "default_title": "__MSG_extensionName__",
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "paste-without-spaces": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "Command+Shift+V",
                "windows": "Ctrl+Shift+V"
            },
            "description": "Paste without spaces"
        }
    },
    "content_security_policy": "default-src 'self'"
}  |  |