Text Snippets

Inserts text into any text field at the click of a button.

Text Snippets란 무엇입니까?

Text Snippets은(는) https://getcrx.cn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inserts text into any text field at the click of a button."입니다.

확장 프로그램 스크린샷

screenshot

Text Snippets 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Support:
1.Manage Text
2. Import / Export

Update:
- v2.2.0 fixed: can not add texts in folders.

To my user:
Many users want me to add the ability to store snippets online.
I also think it is necessary, and I also have the technology to develop it.
However, resources such as the service host require some economic cost.
Will you still use it if I charge for it?
How much are you willing to pay for it?
I want to know your thoughts.

--Sigma 2023.2.8 from China                    

확장 프로그램 기본 정보

이름 Text Snippets Text Snippets
ID nfkicldpnflkchmbaliabnplahdhipip
공식 URL https://chromewebstore.google.com/detail/text-snippets/nfkicldpnflkchmbaliabnplahdhipip
설명 Inserts text into any text field at the click of a button.
파일 크기 210 KB
설치 횟수 8,486
현재 버전 2.2.0
최근 업데이트 2023-02-09
출시 날짜 2019-03-08
평점 2.95/5 총 19 개의 평점
개발자 https://getcrx.cn
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/g8up/youDaoDict/wiki/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.2.0",
    "background": {
        "scripts": [
            "js\/store.js",
            "js\/settings.js",
            "js\/menu.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "gfx\/icon_16.png",
        "default_title": "Text Snippets Options"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Inserts text into any text field at the click of a button.",
    "icons": {
        "128": "gfx\/icon_128.png",
        "16": "gfx\/icon_16.png",
        "48": "gfx\/icon_48.png"
    },
    "name": "Text Snippets",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus"
    ],
    "content_security_policy": "object-src 'self'; script-src 'self';",
    "manifest_version": 2
}