software/hoardy-web/./extension/manifest-common.json

Passively capture, archive, and hoard your web browsing history, including the contents of the pages you visit, for later offline viewing, mirroring, and/or indexing. Your own personal private Wayback Machine that can also archive HTTP POST requests and responses, as well as most other HTTP-level data.

Files

Raw Source

Contents

{
    "manifest_version": 2,

    "name": "Hoardy-Web",
    "version": "1.16.0",
    "description": "Passively capture, archive, and hoard your web browsing history, including the contents of the pages you visit, for later offline viewing, mirroring, and/or indexing. Low memory footprint, lots of configuration options. Previously known as pWebArc.",

    "author": "Jan Malakhovski",
    "homepage_url": "https://github.com/Own-Data-Privateer/hoardy-web",

    "background": {
        "page": "background/main.html"
    },

    "browser_action": {
        "default_title": "Hoardy-Web",
        "default_popup": "page/popup.html"
    },

    "options_ui": {
        "page": "page/popup.html#options"
    },

    "commands": {
        "showState": {
            "suggested_key": {
                "default": "Alt+G"
            },
            "description": "Open the internal state page"
        },
        "showLog": {
            "description": "Open the log of recently collected and discarded reqres"
        },
        "showTabState": {
            "description": "For the currently active tab, open the internal state page"
        },
        "showTabLog": {
            "description": "For the currently active tab, open the log of recently collected and discarded reqres"
        },
        "toggleTabConfigTracking": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "For the currently active tab, toggle tracking and reset it for the tab's new children"
        },
        "toggleTabConfigChildrenTracking": {
            "description": "For current tab's new children, toggle tracking"
        },
        "toggleTabConfigLimbo": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "For the currently active tab, toggle limbo mode and reset it for the tab's new children"
        },
        "toggleTabConfigChildrenLimbo": {
            "description": "For current tab's new children, toggle limbo mode"
        },
        "unmarkAllProblematic": {
            "description": "Unmark all problematic reqres"
        },
        "unmarkAllTabProblematic": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "For the currently active tab, unmark all problematic reqres"
        },
        "collectAllInLimbo": {
            "description": "Collect all reqres in limbo"
        },
        "collectAllTabInLimbo": {
            "description": "For the currently active tab, collect all reqres in limbo"
        },
        "discardAllInLimbo": {
            "description": "Discard all reqres in limbo"
        },
        "discardAllTabInLimbo": {
            "description": "For the currently active tab, discard all reqres in limbo"
        },
        "snapshotAll": {
            "description": "Take DOM snapshots of all frames of all open tabs for which \"Track newly generated requests\" setting is enabled"
        },
        "snapshotTab": {
            "description": "Take DOM snapshots of all frames of the currently active tab"
        }
    }
}