Insert Blurb

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

Insert Blurb क्या है?

Insert Blurb Lord Zarak द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Insert a pre-written text blurb to any textbox on the webpage."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Insert Blurb एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}