SEO On-Page Analyzer

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

Cos'è SEO On-Page Analyzer?

SEO On-Page Analyzer è un'estensione di Chrome sviluppata da https://seoworkflows.com, e la sua funzione principale è "Chrome extension to review the on-page SEO attributes of a page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione SEO On-Page Analyzer

Scarica i file di estensione SEO On-Page Analyzer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SEO On-Page Analyzer SEO On-Page Analyzer
ID npnhelfdhpnmbkpjcahmjmafnpneneke
URL Ufficiale https://chromewebstore.google.com/detail/seo-on-page-analyzer/npnhelfdhpnmbkpjcahmjmafnpneneke
Descrizione Chrome extension to review the on-page SEO attributes of a page.
Dimensione del File 506 KB
Conteggio Installazioni 195
Versione Corrente 1.0.3
Ultimo Aggiornamento 2023-07-11
Data di Pubblicazione 2023-06-25
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore https://seoworkflows.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.seoworkflows.com/extensions/details/seo-onpage-analyzer
Lingue Supportate 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"
        }
    ]
}