Paste without spaces
Remove spaces and paste
Paste without spaces क्या है?
Paste without spaces Jérémy Petitseigneur द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove spaces and paste"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Paste without spaces एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'" } |