SEOInfo

Shows SEO issues as you navigate pages. Displays performance data and full AMP status and errors for HTML pages.

Что такое SEOInfo?

SEOInfo - это расширение Chrome, разработанное https://weeblr.com, и его основная функция - "Shows SEO issues as you navigate pages. Displays performance data and full AMP status and errors for HTML pages.".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        SEOInfo automatically alerts you as you navigate your website of SEO-related errors. For instance: invalid canonical, hreflang, AMP version. At the click of a button, all SEO and performance information and graphs about the current page are displayed. Includes SEO checks, structured data validation, Lighthouse validation, AMP validation inside the extension. This information can be saved with a single click to another tab for printing or saving to file.

SEOInfo is available in English, Spanish and French - partial Russian translation.

Features:

Automated checks and validation:

- Core Web Vitals scores with icon alerts when out of bound
- Canonical: is the canonical link valid? ie not an error, not blocked by robots.txt or a redirect loop
- AMP pages: full validation. Errors and warnings are displayed in the extension (AMP-related features are not available on Firefox)
- HrefLang: full validation: multiple entries, blocking by meta or robots.txt, reciprocal links, valid language, country and script variations codes. Loads all hreflang targets and run the same checks
- Assets: load status (OK, 404, 403, etc)

On demand checks and validation:

- Structured data full validation (json+ld and microdata). Full report equivalent to that on Google online structured data tool.
- Desktop and Mobile versions audit using Google Insight API
- Full analysis and scoring with errors and recommendation on Performance, Accessibility, Best Practices, SEO and Progressive Web App

Collected/displayed information:

- Page title, description, canonical
- Accurate Google search results preview with title truncating by pixel, breadcrumb and publication date representation based on JSON-LD structured data and favicon
- Check if page can be indexed, followed - applying robots.txt content
- Page is mobile-compatible
- Chain of server-side redirects to load the page
- Performance: TTFB, Interactive, First Contentful paint, Load times, transfer sizes for page and assets (images, fonts, css, javascript, ...)
- Performance and resources sizes displayed in table and as graphs

- Service workers with status and manifest

- All links on page, with follow, no-follow, internal vs external, invalid, non-HTTP, etc
- All links can be validated for HTTP status and errors
- All links can be saved as Excel files with their HTTP status or redirects.

- AMP status: has an AMP version, is an AMP page?
- If a page as an AMP version, the AMP version is validated in the background so you do not need to visit it

- All HRefLang tags with validation results

- All server response headers
- Server IP and HTTP protocol version used
- All OGP and Twitter Cards tags
- All other meta tags and links tag
- All JSON-LD structured data tags
- List of all assets loaded, with error/success and from server/from cache status
- Assets list can be saved as Excel files with their HTTP status, size, timings, redirects.
- Entire report can be saved in a different tab with a single-click and then printed or saved to a file.

The extension icon changes to tell you if the current page is ok or has errors or warning. Clicking the extension icon provides you with all the details.                    

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

Название SEOInfo SEOInfo
ID ppbdklaincgliegpfolkjjfncpgobneb
Официальный URL https://chromewebstore.google.com/detail/seoinfo/ppbdklaincgliegpfolkjjfncpgobneb
Описание Shows SEO issues as you navigate pages. Displays performance data and full AMP status and errors for HTML pages.
Размер файла 1.58 MB
Количество установок 14,204
Текущая Версия 2.2.1.453
Последнее Обновление 2023-07-17
Дата публикации 2020-06-29
Рейтинг 4.67/5 Всего 9 оценок
Разработчик https://weeblr.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://weeblr.com/doc/products.seoinfo/current/
URL страницы помощи https://weeblr.com/helpdesk/other-weeblr-extensions
URL страницы политики конфиденциальности https://www.weeblr.com/legal/privacy-policy
Поддерживаемые языки en,fr,es,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SEOInfo",
    "description": "__MSG_extension_description__",
    "author": "Weeblr",
    "homepage_url": "https:\/\/weeblr.com\/seoinfo",
    "version": "2.2.1.453",
    "default_locale": "en",
    "minimum_chrome_version": "51",
    "icons": {
        "48": "\/assets\/default\/images\/icons\/seoinfo-48.png"
    },
    "permissions": [
        "webNavigation",
        "webRequest",
        "*:\/\/*\/",
        "",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'wasm-eval' https:\/\/cdn.ampproject.org; object-src 'self'",
    "browser_action": {
        "default_title": "SEOInfo",
        "default_icon": "\/assets\/default\/images\/icons\/seoinfo-32.png",
        "default_popup": "\/html\/popup.html"
    },
    "background": {
        "page": "\/html\/background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/app\/content.js"
            ]
        }
    ]
}