SEO helper

helps with tasks like seeing if a page is indexable

Что такое SEO helper?

SEO helper - это расширение Chrome, разработанное https://valentin.app, и его основная функция - "helps with tasks like seeing if a page is indexable".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения SEO helper

Скачайте файлы расширений SEO helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
Официальный URL https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
Описание helps with tasks like seeing if a page is indexable
Размер файла 191 KB
Количество установок 247
Текущая Версия 2.0
Последнее Обновление 2018-12-03
Дата публикации 2018-12-02
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://valentin.app
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://valentin.app/robotsmeta.html
URL страницы помощи https://twitter.com/VorticonCmdr
Поддерживаемые языки 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"
}