QuickText

QuickText allows you to simply paste predefined texts into text fields.

Vad är QuickText?

QuickText är en Chrome-tillägg utvecklad av https://www.pixiz.com, och dess huvudfunktion är "QuickText allows you to simply paste predefined texts into text fields.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner QuickText-förlängningens CRX-fil

Ladda ner QuickText-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        QuickText allows you to simply paste predefined texts into text fields.                    

Grundläggande Information om Tillägg

Namn QuickText QuickText
ID neflkikppleikkghgjheajjpdjaihlch
Officiell webbadress https://chromewebstore.google.com/detail/quicktext/neflkikppleikkghgjheajjpdjaihlch
Beskrivning QuickText allows you to simply paste predefined texts into text fields.
Filstorlek 27.11 KB
Antal Installationer 1,181
Aktuell Version 0.8
Senast Uppdaterad 2020-05-04
Publiceringsdatum 2020-05-03
Betyg 4.33/5 Totalt 6 Betyg
Utvecklare https://www.pixiz.com
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickText",
    "short_name": "QuickText",
    "version": "0.8",
    "author": "Dady",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}