Wayback Machine Auto-Archiver

Automatically Archive Pages.

What is Wayback Machine Auto-Archiver?

Wayback Machine Auto-Archiver is a Chrome extension developed by jacobkotrla, and its main feature is "Automatically Archive Pages.".

Extension Screenshots

Download Wayback Machine Auto-Archiver Extension CRX File

Download Wayback Machine Auto-Archiver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This is the app I made for the Congressional App Challenge 2018. It automatically archives every webpage you visit using the Wayback Machine by the Internet Archive.

In order archive web pages, the extension needs to see which pages you visit, which enables it to log your browsing history. These URLs are only sent to the Internet Archive for archival, and the Internet Archive may log your IP address.

The icon that displays in the toolbar once the extension is installed is from http://freeicons.io/                    

Extension Basic Information

Name Wayback Machine Auto-Archiver Wayback Machine Auto-Archiver
ID klnimjpfkfcfdllnbmmhjjomcmciepkk
Official URL https://chromewebstore.google.com/detail/wayback-machine-auto-arch/klnimjpfkfcfdllnbmmhjjomcmciepkk
Description Automatically Archive Pages.
File Size 34.71 KB
Installation Count 1,190
Current Version 0.3.3
Last Updated 2022-07-24
Publish Date 2018-10-17
Rating 4.11/5 Total 19 Ratings
Developer jacobkotrla
Email [email protected]
Payment Type free
Privacy Policy Page URL https://sites.google.com/view/jacobkotrla/chrome-store-privacy-policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wayback Machine Auto-Archiver",
    "version": "0.3.3",
    "description": "Automatically Archive Pages.",
    "permissions": [
        "https:\/\/web.archive.org\/*",
        "tabs"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}