SEO helper

helps with tasks like seeing if a page is indexable

¿Qué es SEO helper?

SEO helper es una extensión de Chrome desarrollada por https://valentin.app, y su función principal es "helps with tasks like seeing if a page is indexable".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión SEO helper

Descarga archivos de extensión SEO helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
URL Oficial https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
Descripción helps with tasks like seeing if a page is indexable
Tamaño del Archivo 191 KB
Cantidad de Instalaciones 247
Versión Actual 2.0
Última Actualización 2018-12-03
Fecha de Publicación 2018-12-02
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://valentin.app
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://valentin.app/robotsmeta.html
URL de la Página de Ayuda https://twitter.com/VorticonCmdr
Idiomas Soportados 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"
}