Formalizr

Remembers what you type in web pages to be able to restore it in case of a page crash.

Formalizr क्या है?

Formalizr https://dennisbabkin.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remembers what you type in web pages to be able to restore it in case of a page crash."।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Formalizr एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Formalizr is the web browser extension designed to remember what you type in web pages. This can come handy if a page crashes or reloads without submitting what you typed up in it. With Formalizr you can easily recover the lost text.

This is an Open Source project:
https://github.com/dennisbabkin/Formalizr

DISCLAIMER: All data collected by the Formalizr will be stored locally on the computer where you install the Formalizr extension. Collected data can be fully removed from the Formalizr extension at any given time. The Formalizr extension will NOT attempt to offload, distribute, broadcast, sell or in any way share collected data. We designed Formalizr extension with the privacy of the user's data in mind.                    

एक्सटेंशन की मूल जानकारी

नाम Formalizr Formalizr
ID ceoiohgolheciaefomofjboicekphfmp
आधिकारिक URL https://chromewebstore.google.com/detail/formalizr/ceoiohgolheciaefomofjboicekphfmp
विवरण Remembers what you type in web pages to be able to restore it in case of a page crash.
फ़ाइल का आकार 607 KB
स्थापना संख्या 1,692
वर्तमान संस्करण 1.0.0.3
अंतिम अपडेट 2019-04-14
प्रकाशन तिथि 2019-04-11
रेटिंग 4.55/5 कुल 22 रेटिंग्स
डेवलपर https://dennisbabkin.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://dennisbabkin.com/formalizr
सहायता पृष्ठ URL https://dennisbabkin.com/php/faq.php?what=formalizr
गोपनीयता नीति पृष्ठ URL https://dennisbabkin.com/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_main_app_name__",
    "short_name": "__MSG_main_app_name_12chars__",
    "version": "1.0.0.3",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_main_app_description_longer__",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon_off19.png",
            "38": "images\/icon_off38.png"
        },
        "default_title": "__MSG_main_app_name__",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "code.jquery.com\/jquery-2.1.1.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "minimum_chrome_version": "26.0.0.0",
    "offline_enabled": true,
    "permissions": [
        "storage",
        "tabs",
        "clipboardWrite",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "chrome:\/\/favicon\/"
    ]
}