Autosave webpage

Save web page. Auto saves the tab's html file in the chosen directory on a scheduled timer. Also refreshes the page on a scheduled…

Autosave webpage क्या है?

Autosave webpage mtcutler1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save web page. Auto saves the tab's html file in the chosen directory on a scheduled timer. Also refreshes the page on a scheduled…"।

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

screenshot

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

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

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

                        Save web page.  Auto saves the tab's html file in the chosen directory on a scheduled timer. Also refreshes the page on a scheduled timer.

Note that this has only been tested on Chrome for Windows 8 and 10.  I have a report that it does NOT work on Chrome for Linux, and it may not work on Chrome for Apple either.  So please only use on Windows 8 or 10.  I am not making any updates to this app, but I still use it personally and it works great for me, as described below.

Use as a simple screen scraper to save a web page's html to a file. You can then parse the html file with another program and extract content.  The content will stay updated if the page auto-refreshes with new content, or you can auto-refresh the page on a timer.

1) Select the tab you want to auto save (only 1 tab can be autosaved), open the Autosave extension, click + and it will show the selected tab.
2) Choose a sub-directory from the Google Downloads directory (only Downloads and sub-directories can be saved to with a Chrome extension).  Leave blank to save to Downloads.  You can also configure Chrome to point to any directory on your computer/network as the default Downloads directory (Settings, Advanced).  Autosave will then save to that directory, or any sub-directory configured in Autosave.
3) Enter the filename.  .txt extensions seem to save faster than .html, even though the format is the same.  The same file is overwritten each time.  The purpose is to get the latest web page content without creating tons of files.
4) Choose the auto save interval in seconds.
5) Choose the auto refresh web page time in minutes.  Blank or 'never' will never refresh the page.

The extension cleans up Chrome's Downloads information for just the file auto-saving, to prevent it from getting extremely large and becoming a memory issue.

Permissions:
1) Read and change all your data on websites you visit - required to be able to save what's on the web page - the extension has to get the page first.  We could limit this to a single page, the one you want to save. But then it wouldn't work for any page for others.
2) Manage your downloads - creates the page's html as a link and sends the link to Chrome to download and save. Has to manage downloads to do that.                    

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

नाम Autosave webpage Autosave webpage
ID kfnkfhdbeidcdpdlefbfabepmfhldkoi
आधिकारिक URL https://chromewebstore.google.com/detail/autosave-webpage/kfnkfhdbeidcdpdlefbfabepmfhldkoi
विवरण Save web page. Auto saves the tab's html file in the chosen directory on a scheduled timer. Also refreshes the page on a scheduled…
फ़ाइल का आकार 171 KB
स्थापना संख्या 2,117
वर्तमान संस्करण 0.2
अंतिम अपडेट 2022-04-07
प्रकाशन तिथि 2019-03-01
रेटिंग 3.73/5 कुल 22 रेटिंग्स
डेवलपर mtcutler1
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Autosave webpage",
    "description": " ",
    "version": "0.2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "downloads",
        "tabs",
        ""
    ]
}