Similar Pages

Allows you to browse related pages.

Τι είναι το Similar Pages;

Το Similar Pages είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zamfofex, και η κύρια λειτουργία του είναι "Allows you to browse related pages.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        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.                    

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

Όνομα Similar Pages Similar Pages
ID lpedgppinmnpgdblfmjdppaeeldcpnil
Επίσημο URL https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil
Περιγραφή Allows you to browse related pages.
Μέγεθος Αρχείου 12.58 KB
Αριθμός Εγκαταστάσεων 1,111
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2019-04-09
Ημερομηνία Δημοσίευσης 2019-04-05
Προγραμματιστής zamfofex
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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]"
        }
    }
}