SEO On-Page Analyzer

Chrome extension to review the on-page SEO attributes of a page.

O que é SEO On-Page Analyzer?

SEO On-Page Analyzer é uma extensão do Chrome desenvolvida por https://seoworkflows.com, e sua principal característica é "Chrome extension to review the on-page SEO attributes of a page.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SEO On-Page Analyzer

Baixe arquivos de extensão SEO On-Page Analyzer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Optimize your web pages for better search engine visibility with the SEO On-Page Analyzer Chrome extension. 

Features:

1. **Complete On-Page Analysis**: Evaluate title tags, header tags, links, images, stylesheets, scripts, meta tags, word counts, and more.
2. **Export to Excel**: Export analyzed data for further analysis and reporting.
3. **Link Tester**: Within the "Links", "Images" and "Styles & Scripts" sections, there is the option to test all links to verify whether they're any non-200 status code responses for debugging and optimization.
4. **User-Friendly Interface**: Easy-to-use interface suitable for beginners and experienced SEO professionals.                    

Informações Básicas da Extensão

Nome SEO On-Page Analyzer SEO On-Page Analyzer
ID npnhelfdhpnmbkpjcahmjmafnpneneke
URL Oficial https://chromewebstore.google.com/detail/seo-on-page-analyzer/npnhelfdhpnmbkpjcahmjmafnpneneke
Descrição Chrome extension to review the on-page SEO attributes of a page.
Tamanho do Arquivo 506 KB
Contagem de Instalações 195
Versão Atual 1.0.3
Última Atualização 2023-07-11
Data de Publicação 2023-06-25
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor https://seoworkflows.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.seoworkflows.com/extensions/details/seo-onpage-analyzer
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SEO On-Page Analyzer",
    "description": "Chrome extension to review the on-page SEO attributes of a page.",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "SEO On-Page Analyzer",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ]
}