Paste without spaces
Remove spaces and paste
Τι είναι το Paste without spaces;
Το Paste without spaces είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jérémy Petitseigneur, και η κύρια λειτουργία του είναι "Remove spaces and paste".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Paste without spaces
Λήψη αρχείων επέκτασης Paste without spaces σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Paste without spaces |
ID | kppdpnmdpdjckgihabenefhimmebobgc |
Επίσημο URL | https://chromewebstore.google.com/detail/paste-without-spaces/kppdpnmdpdjckgihabenefhimmebobgc |
Περιγραφή | Remove spaces and paste |
Μέγεθος Αρχείου | 34.52 KB |
Αριθμός Εγκαταστάσεων | 2,146 |
Τρέχουσα Έκδοση | 2.4 |
Τελευταία Ενημέρωση | 2020-12-04 |
Ημερομηνία Δημοσίευσης | 2020-02-27 |
Αξιολόγηση | 5.00/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | Jérémy Petitseigneur |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://www.ldlcible.com/nospace/index.html |
Υποστηριζόμενες Γλώσσες | 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'" } |