Memento Time Travel

Travel to the past of the web by right-clicking pages and links.

Co to jest Memento Time Travel?

Memento Time Travel to rozszerzenie Chrome opracowane przez Harihar Shankar, a jego główną funkcją jest „Travel to the past of the web by right-clicking pages and links.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Memento Time Travel

Pobierz pliki rozszerzeń Memento Time Travel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Memento for Chrome allows you to seamlessly navigate between the present web and the web of the past. It turns your browser into a web time travel machine that is activated by means of a Memento sub-menu that is available on right-click.

First, select a date for time travel by clicking the black Memento extension icon. Now right-click on a web page, and click the "Get near …" option from the Memento sub-menu to see what the page looked like around the selected date. Do the same for any link in a page to see what the linked page looked like. If you hit one of those nasty "Page not Found" errors, right-click and select the "Get near current time" option to see what the page looked like before it vanished from the web. When on a past version of a page - the Memento extension icon is now red - right-click the page and select the "Get current time" option to see what it looks like now.

Memento for Chrome obtains prior versions of pages from web archives around the world, including the massive web-wide Internet Archive, national archives such as the British Library and UK National Archives web archives, and on-demand web archives such as archive.is. It also allows time travel in all language versions of Wikipedia. There's two things Memento for Chrome can not do for you: obtain a prior version of a page when none have been archived and time travel into the future. Our sincere apologies for that.

Technically, the Memento for Chrome extension is a client-side implementation of the Memento protocol that extends HTTP with content negotiation in the date time dimension. Many web archives have implemented server-side support for the Memento protocol, and, in essence, every content management system that supports time-based versioning can implement it. Technical details are in the Memento Internet Draft at http://www.mementoweb.org/guide/rfc/ID/. General information about the protocol, including a quick introduction, is available at http://mementoweb.org.

For queries about the Memento for Chrome extension and the Memento protocol, get in touch at [email protected].                    

Podstawowe informacje o rozszerzeniu

Nazwa Memento Time Travel Memento Time Travel
ID jgbfpjledahoajcppakbgilmojkaghgm
Oficjalny URL https://chromewebstore.google.com/detail/memento-time-travel/jgbfpjledahoajcppakbgilmojkaghgm
Opis Travel to the past of the web by right-clicking pages and links.
Rozmiar pliku 584 KB
Liczba instalacji 10,555
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2018-03-28
Data Publikacji 2018-03-28
Ocena 3.57/5 Łącznie 14 Oceny
Deweloper Harihar Shankar
Typ Płatności free
Strona Rozszerzenia http://mementoweb.org
Adres URL Strony Pomocy https://groups.google.com/forum/#!forum/memento-dev
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "version": "1.0.2",
    "permissions": [
        "http:\/\/*\/*",
        "",
        "contextMenus",
        "storage",
        "webRequest",
        "webNavigation",
        "webRequestBlocking"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "memento.js",
            "lib\/jquery-ui\/jquery.js",
            "lib\/jquery-ui\/jquery-ui.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "img\/memento.png",
        "default_title": "Memento Time Travel",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "img\/memento-16x16.png",
        "48": "img\/memento-48x48.png",
        "128": "img\/memento-128x128.png"
    }
}