SEO helper

helps with tasks like seeing if a page is indexable

Cos'è SEO helper?

SEO helper è un'estensione di Chrome sviluppata da https://valentin.app, e la sua funzione principale è "helps with tasks like seeing if a page is indexable".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione SEO helper

Scarica i file di estensione SEO helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
URL Ufficiale https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
Descrizione helps with tasks like seeing if a page is indexable
Dimensione del File 191 KB
Conteggio Installazioni 247
Versione Corrente 2.0
Ultimo Aggiornamento 2018-12-03
Data di Pubblicazione 2018-12-02
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://valentin.app
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://valentin.app/robotsmeta.html
URL della Pagina di Aiuto https://twitter.com/VorticonCmdr
Lingue Supportate 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"
}