Insert Blurb

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

Insert Blurbคืออะไร?

Insert Blurb เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lord Zarak และคุณลักษณะหลักของมันคือ "Insert a pre-written text blurb to any textbox on the webpage."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Insert Blurb

ดาวน์โหลดไฟล์ส่วนขยาย Insert Blurb ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
        }
    ]
}