Save Text to File

Save highlighted text to a file on your computer.

Save Text to File क्या है?

Save Text to File bobbyrne01 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save highlighted text to a file on your computer."।

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

screenshot
screenshot

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

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

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

                        Save text from a web page to a file anywhere on your computer.

Highlight some text, right-click and select "Save Text to File".

Text will be saved to a new file or else appended to an existing file, depending on option selections.

Features:
- Specify any directory to save files on your computer
- Add date of timestamp to saved file name
- Various date formats to choose from
- Save current URL, page title in file
- Optional directory selection dialog on save

Full install instructions:
https://github.com/bobbyrne01/save-text-to-file-chrome/blob/master/doc/installation.md

Please donate to support development:
Paypal: https://www.paypal.me/bobbyrne01

Open source:
Released under GNU GPL v3 license ..
https://github.com/bobbyrne01/save-text-to-file-chrome                    

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

नाम Save Text to File Save Text to File
ID mkepenkbhepjelljcfiooignmpfgochi
आधिकारिक URL https://chromewebstore.google.com/detail/save-text-to-file/mkepenkbhepjelljcfiooignmpfgochi
विवरण Save highlighted text to a file on your computer.
फ़ाइल का आकार 17.48 KB
स्थापना संख्या 4,372
वर्तमान संस्करण 2.2.1
अंतिम अपडेट 2021-09-06
प्रकाशन तिथि 2020-02-03
रेटिंग 3.94/5 कुल 33 रेटिंग्स
डेवलपर bobbyrne01
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bobbyrne01/save-text-to-file-chrome
सहायता पृष्ठ URL https://github.com/bobbyrne01/save-text-to-file-chrome/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Text to File",
    "description": "Save highlighted text to a file on your computer.",
    "version": "2.2.1",
    "permissions": [
        "contextMenus",
        "downloads",
        "storage",
        "notifications",
        "activeTab",
        "nativeMessaging"
    ],
    "background": {
        "scripts": [
            "backgroundScript.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "icons": {
        "64": "images\/ico.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "save-text-to-file": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "Saves the selected text from the active tab to a file."
        }
    }
}