Web Archives

View archived and cached versions of web pages on 10+ search engines, such as the Wayback Machine, Archive.is and Google.

Τι είναι το Web Archives;

Το Web Archives είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://armin.dev, και η κύρια λειτουργία του είναι "View archived and cached versions of web pages on 10+ search engines, such as the Wayback Machine, Archive.is and Google.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Web Archives

Λήψη αρχείων επέκτασης Web Archives σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Web Archives is a browser extension that enables you to find archived and cached versions of web pages. Searches can be initiated from the context menu and the browser toolbar.

Web Archives is an open source project made possible thanks to a community of awesome supporters. If you'd like to support the continued development of the extension, please check out https://armin.dev/go/patreon

A diverse set of archive and cache sources are supported, which can be toggled and reordered from the extension's options. Visit the wiki for the full list of supported search engines.

https://github.com/dessant/web-archives/wiki/Search-engines

PRO TIP: search for a link without visiting the web page by right-clicking on the link and searching from the context menu.

A handful of search modes are offered that serve different use cases. The search mode can be set independently for the context menu and the browser toolbar from the extension's options.

Search modes:
  • Tab: search for the web page opened in the active tab. This is the default search mode.
  • URL: search for a custom page URL.

The URL you select during a search is sent to the requested service, such as the Wayback Machine. Visit the extension's privacy policy for more information.

The extension is also available for Edge and Safari: https://github.com/dessant/web-archives#readme

Reviews are not monitored for bug reports, please use GitHub for issues and feature requests.

https://github.com/dessant/web-archives                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Web Archives Web Archives
ID hkligngkgcpcolhcnkgccglchdafcnao
Επίσημο URL https://chromewebstore.google.com/detail/web-archives/hkligngkgcpcolhcnkgccglchdafcnao
Περιγραφή View archived and cached versions of web pages on 10+ search engines, such as the Wayback Machine, Archive.is and Google.
Μέγεθος Αρχείου 711 KB
Αριθμός Εγκαταστάσεων 36,198
Τρέχουσα Έκδοση 5.0.0
Τελευταία Ενημέρωση 2023-11-07
Ημερομηνία Δημοσίευσης 2020-02-02
Αξιολόγηση 4.90/5 Συνολικά 39 Αξιολογήσεις
Προγραμματιστής https://armin.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/dessant/web-archives#readme
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/dessant/web-archives/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/dessant/web-archives/wiki/Privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "5.0.0",
    "author": "Armin Sebastian",
    "homepage_url": "https:\/\/github.com\/dessant\/web-archives",
    "default_locale": "en",
    "minimum_chrome_version": "92.0",
    "permissions": [
        "alarms",
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "tabs",
        "activeTab",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "content_security_policy": "default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; connect-src *; object-src 'none'; child-src 'none'; form-action 'none';",
    "icons": {
        "16": "src\/assets\/icons\/app\/icon-16.png",
        "19": "src\/assets\/icons\/app\/icon-19.png",
        "24": "src\/assets\/icons\/app\/icon-24.png",
        "32": "src\/assets\/icons\/app\/icon-32.png",
        "38": "src\/assets\/icons\/app\/icon-38.png",
        "48": "src\/assets\/icons\/app\/icon-48.png",
        "64": "src\/assets\/icons\/app\/icon-64.png",
        "96": "src\/assets\/icons\/app\/icon-96.png",
        "128": "src\/assets\/icons\/app\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "src\/assets\/icons\/app\/icon-16.png",
            "19": "src\/assets\/icons\/app\/icon-19.png",
            "24": "src\/assets\/icons\/app\/icon-24.png",
            "32": "src\/assets\/icons\/app\/icon-32.png",
            "38": "src\/assets\/icons\/app\/icon-38.png",
            "48": "src\/assets\/icons\/app\/icon-48.png",
            "64": "src\/assets\/icons\/app\/icon-64.png",
            "96": "src\/assets\/icons\/app\/icon-96.png",
            "128": "src\/assets\/icons\/app\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "src\/options\/index.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "background": {
        "page": "src\/background\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "src\/base\/script.js"
            ]
        }
    ],
    "incognito": "split"
}