Insert Blurb

Insert a pre-written text blurb to any textbox on the webpage.

Insert Blurb란 무엇입니까?

Insert Blurb은(는) Lord Zarak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Insert a pre-written text blurb to any textbox on the webpage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Insert Blurb 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This tool allows you to easily & quickly insert any pre-written text blurbs such as Email address, webpage URL, and message with one click from the context menu on any text-box. 

To protect your privacy, please note that all the text blurbs you created are stored only on your computer inside the Chrome local storage, and not uploaded to any servers or synced across Chrome browsers on other computers. You can always export the blurbs as a text file. 

Limitation: The insert function may not work on certain website, e.g. Facebook when create a post. Please let me know the website you would like the extension to work, and I will see what I can do to support it. Thank you for using this tool!                    

확장 프로그램 기본 정보

이름 Insert Blurb Insert Blurb
ID bkoknijjdnlaenldjopbkngkoegfmejf
공식 URL https://chromewebstore.google.com/detail/insert-blurb/bkoknijjdnlaenldjopbkngkoegfmejf
설명 Insert a pre-written text blurb to any textbox on the webpage.
파일 크기 34.6 KB
설치 횟수 1,069
현재 버전 1.4
최근 업데이트 2023-11-08
출시 날짜 2020-07-04
평점 3.83/5 총 6 개의 평점
개발자 Lord Zarak
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Insert Blurb",
    "description": "Insert a pre-written text blurb to any textbox on the webpage.",
    "version": "1.4",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "blurb.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}