Similar Pages

Allows you to browse related pages.

Was ist Similar Pages?

Similar Pages ist eine Chrome-Erweiterung, die von zamfofex entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to browse related pages.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Similar Pages-Erweiterungs-CRX-Datei herunterladen

Laden Sie Similar Pages-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension gives you the ability to see webpages related to the one you are currently browsing.

Whether you are looking at the documentation for your next programming project, trying to find your next favorite chocolate cake recipe, or even trying to research information for a school project, this extension can help you. By using Google Search technology, webpages from all throughout the Web are searched, and the relevant one that share a similar content to the one you are currently visiting are presented to you.                    

Grundlegende Informationen zur Erweiterung

Name Similar Pages Similar Pages
ID lpedgppinmnpgdblfmjdppaeeldcpnil
Offizielle URL https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil
Beschreibung Allows you to browse related pages.
Dateigröße 12.58 KB
Installationsanzahl 1,111
Aktuelle Version 1.1
Letztes Update 2019-04-09
Veröffentlichungsdatum 2019-04-05
Entwickler zamfofex
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Similar Pages",
    "description": "Allows you to browse related pages.",
    "version": "1.1",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_title": "Show Similar"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "default-options.js",
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "main.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "always-injected.css"
            ],
            "js": [
                "always-injected.js"
            ],
            "run_at": "document_start"
        }
    ],
    "incognito": "split",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}