Similar Pages

Allows you to browse related pages.

Vad är Similar Pages?

Similar Pages är en Chrome-tillägg utvecklad av zamfofex, och dess huvudfunktion är "Allows you to browse related pages.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Similar Pages-förlängningens CRX-fil

Ladda ner Similar Pages-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Similar Pages Similar Pages
ID lpedgppinmnpgdblfmjdppaeeldcpnil
Officiell webbadress https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil
Beskrivning Allows you to browse related pages.
Filstorlek 12.58 KB
Antal Installationer 1,111
Aktuell Version 1.1
Senast Uppdaterad 2019-04-09
Publiceringsdatum 2019-04-05
Utvecklare zamfofex
E-post [email protected]
Betalningssätt free
Stödda Språk 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]"
        }
    }
}