SEO helper

helps with tasks like seeing if a page is indexable

Co to jest SEO helper?

SEO helper to rozszerzenie Chrome opracowane przez https://valentin.app, a jego główną funkcją jest „helps with tasks like seeing if a page is indexable”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia SEO helper

Pobierz pliki rozszerzeń SEO helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
Oficjalny URL https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
Opis helps with tasks like seeing if a page is indexable
Rozmiar pliku 191 KB
Liczba instalacji 247
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2018-12-03
Data Publikacji 2018-12-02
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper https://valentin.app
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://valentin.app/robotsmeta.html
Adres URL Strony Pomocy https://twitter.com/VorticonCmdr
Obsługiwane Języki 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"
}