Paste without spaces

Remove spaces and paste

Paste without spaces란 무엇입니까?

Paste without spaces은(는) Jérémy Petitseigneur에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove spaces and paste"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Paste without spaces 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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'"
}