Textarea Cache

Allows to save automatically the content in a text input field.

Vad är Textarea Cache?

Textarea Cache är en Chrome-tillägg utvecklad av https://blog.wildsky.cc, och dess huvudfunktion är "Allows to save automatically the content in a text input field.".

Tilläggsskärmbilder

screenshot

Ladda ner Textarea Cache-förlängningens CRX-fil

Ladda ner Textarea Cache-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

                        This add-on will automatically save the content in textarea or WYSIWYG editor when user is typing. User can recover the saved texts in the cache panel, even the tab or the window is closed unexpectedly.                    

Grundläggande Information om Tillägg

Namn Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
Officiell webbadress https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Beskrivning Allows to save automatically the content in a text input field.
Filstorlek 671 KB
Antal Installationer 3,051
Aktuell Version 4.5.0
Senast Uppdaterad 2022-07-12
Publiceringsdatum 2019-04-21
Betyg 4.00/5 Totalt 14 Betyg
Utvecklare https://blog.wildsky.cc
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/wildskyf/TextareaCache/
Hjälpsida URL https://github.com/wildskyf/TextareaCache/issues
URL till Sekretesspolicy Sidan https://readmoo.com/terms/privacy
Stödda Språk de,en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "51.0"
        }
    },
    "manifest_version": 2,
    "name": "Textarea Cache",
    "version": "4.5.0",
    "default_locale": "en",
    "description": "Allows to save automatically the content in a text input field.",
    "homepage_url": "https:\/\/github.com\/wildskyf\/TextareaCache",
    "icons": {
        "48": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "clipboardWrite",
        "menus",
        "alarms"
    ],
    "browser_action": {
        "browser_style": true,
        "default_title": "View your saved data (Textarea Cache)",
        "default_icon": "icons\/tacache-48.png"
    },
    "content_scripts": [
        {
            "match_about_blank": true,
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "browser-polyfill.min.js",
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "common.js",
            "ta_database.js",
            "ta_bg.js",
            "background.js"
        ]
    },
    "options_ui": {
        "browser_style": true,
        "page": "options\/options.html"
    }
}