Similar Pages

Allows you to browse related pages.

O que é Similar Pages?

Similar Pages é uma extensão do Chrome desenvolvida por zamfofex, e sua principal característica é "Allows you to browse related pages.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Similar Pages

Baixe arquivos de extensão Similar Pages no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Similar Pages Similar Pages
ID lpedgppinmnpgdblfmjdppaeeldcpnil
URL Oficial https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil
Descrição Allows you to browse related pages.
Tamanho do Arquivo 12.58 KB
Contagem de Instalações 1,111
Versão Atual 1.1
Última Atualização 2019-04-09
Data de Publicação 2019-04-05
Desenvolvedor zamfofex
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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]"
        }
    }
}