SEO helper

helps with tasks like seeing if a page is indexable

O que é SEO helper?

SEO helper é uma extensão do Chrome desenvolvida por https://valentin.app, e sua principal característica é "helps with tasks like seeing if a page is indexable".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SEO helper

Baixe arquivos de extensão SEO helper 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

                        SEO helper shows wether the current page can be indexed by Google or not and wether links will be follow or not.

release log:
v2.0 now with several new features like including status codes, redirects, robots.txt and canonical
v1.3 several bugfixes (including meta tag in body)
v1.2 now accounts for uppercase                    

Informações Básicas da Extensão

Nome SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
URL Oficial https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
Descrição helps with tasks like seeing if a page is indexable
Tamanho do Arquivo 191 KB
Contagem de Instalações 247
Versão Atual 2.0
Última Atualização 2018-12-03
Data de Publicação 2018-12-02
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://valentin.app
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://valentin.app/robotsmeta.html
URL da Página de Ajuda https://twitter.com/VorticonCmdr
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icons\/icon32.png",
        "default_popup": "popup.html",
        "default_title": "SEO helper",
        "name": "SEO helper"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png"
    },
    "description": "helps with tasks like seeing if a page is indexable",
    "manifest_version": 2,
    "name": "SEO helper",
    "permissions": [
        "storage",
        "webRequest",
        "webNavigation",
        "tabs",
        ""
    ],
    "version": "2.0"
}