Page Auto Archiver

Automatically saves the contents of the web pages you have viewed to WebDAV, and allows you to find pages you have previously viewed

Page Auto Archiver क्या है?

Page Auto Archiver PingFlash द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically saves the contents of the web pages you have viewed to WebDAV, and allows you to find pages you have previously viewed"।

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

screenshot
screenshot
screenshot

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

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

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

                        Updates:

v2.1:
* Fix: Unable to view cached content for some search results

--------------------------------

Page Auto Archiver automatically saves the contents of the web pages you have viewed to WebDAV, and provides a search function that allows you to easily find pages you have previously viewed.

I often got stuck when I suddenly remembered that there was something I wanted on a web page I had visited a few days ago, but I couldn't remember the URL. Although I remembered a few keywords on the web page, I couldn't find it with Google. 

So I thought, if there is a way to let me search the web pages I had visited before, that would be good. Then, I make this extension. This extension automatically saves the full-text content of the web pages you are visiting to WebDAV in the background. When you want to find something, you can use the search function to search for it. 

You can use your own built WebDAV service, or you can use a free WebDAV service I provide. 

If you have any comments or suggestions, please feel free to send an email to [email protected]


--------------------------

Old Updates:

v2.0:
* New: Allow open search result link in new window
* New: Automatic restore explorer and search page state


v1.9:
* Fix: List files failed with some thirdpard WebDAV provider
* Fix: URL with special characters not decoded in search result

v1.8:
* Fix: WebDAV configuration can not be saved

v1.7:
* Add Guide Mode, now it is easier to set up WebDAV endpoint
* Fix: unable to connect while there is '@' character in username or password                    

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

नाम Page Auto Archiver Page Auto Archiver
ID inbfhpapklekaajibkklfjieklbbmmke
आधिकारिक URL https://chromewebstore.google.com/detail/page-auto-archiver/inbfhpapklekaajibkklfjieklbbmmke
विवरण Automatically saves the contents of the web pages you have viewed to WebDAV, and allows you to find pages you have previously viewed
फ़ाइल का आकार 729 KB
स्थापना संख्या 117
वर्तमान संस्करण 2.1
अंतिम अपडेट 2023-03-07
प्रकाशन तिथि 2023-01-06
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर PingFlash
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://paa.pingflash.com/privacy
समर्थित भाषाएँ en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "2.1",
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' ; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options\/dist\/index.html",
    "action": [],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    }
}