SEO helper

helps with tasks like seeing if a page is indexable

Co je SEO helper?

SEO helper je rozšíření Chrome vyvinuté https://valentin.app, a jeho hlavní funkcí je „helps with tasks like seeing if a page is indexable“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření SEO helper

Stáhněte si soubory rozšíření SEO helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
Oficiální URL https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
Popis helps with tasks like seeing if a page is indexable
Velikost souboru 191 KB
Počet instalací 247
Aktuální Verze 2.0
Poslední Aktualizace 2018-12-03
Datum Vydání 2018-12-02
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://valentin.app
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://valentin.app/robotsmeta.html
URL Stránky Nápovědy https://twitter.com/VorticonCmdr
Podporované Jazyky 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"
}