WARCreate

Create Wayback-Consumable WARC Files from Any Webpage

Wat is WARCreate?

WARCreate is een Chrome-extensie ontwikkeld door https://matkelly.com, en de belangrijkste functie is "Create Wayback-Consumable WARC Files from Any Webpage".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie WARCreate

Download WARCreate-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        WARCreate is a Google Chrome extension that allows a user to create a Web ARChive (WARC) file from any browsable webpage. The resulting files can then be used with other tools like the Internet Archive's open source Wayback Machine. The tool is an evolving product with the end result pushing toward being a personal web archiving solution for those that wish to securely archive their metadata in a standardize way.

RECENT VERSION HISTORY
Version 0.2021.6.28 Fixes an issue to capture URIs without relative indicators.                    

Basisinformatie over de Extensie

Naam WARCreate WARCreate
ID kenncghfghgolcbmckhiljgaabnpcaaa
Officiële URL https://chromewebstore.google.com/detail/warcreate/kenncghfghgolcbmckhiljgaabnpcaaa
Beschrijving Create Wayback-Consumable WARC Files from Any Webpage
Bestandsgrootte 585 KB
Aantal Installaties 1,660
Huidige Versie 0.2021.6.28 build 1307
Laatst Bijgewerkt 2021-06-30
Publicatiedatum 2019-01-19
Beoordeling 3.67/5 Totaal 9 Beoordelingen
Ontwikkelaar https://matkelly.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://warcreate.com
URL van de Privacybeleid Pagina https://github.com/machawk1/Mink/blob/master/PrivacyPolicy.md
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WARCreate",
    "version": "0.2021.6.28",
    "version_name": "0.2021.6.28 build 1307",
    "description": "Create Wayback-Consumable WARC Files from Any Webpage",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "page": "html\/background.html"
    },
    "homepage_url": "http:\/\/warcreate.com",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-2.1.1.min.js",
                "js\/content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icons\/icon-19.png",
        "default_title": "WARCreate",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "webRequest",
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "http:\/\/*\/",
        "*:\/\/*\/*",
        "notifications"
    ],
    "options_ui": {
        "page": "html\/options.html"
    },
    "short_name": "WARCreate",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "minimum_chrome_version": "23.0"
}