SEO Peek

Just one click to get a quick peek into on-page SEO factors of the web page you visit in the browser.

SEO Peek क्या है?

SEO Peek https://sanderheilbron.nl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Just one click to get a quick peek into on-page SEO factors of the web page you visit in the browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SEO Peek एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ***
This extension will stop working!

Hey there!

I want to let you know that starting in June 2024, Google will no longer support Chrome extensions with manifest v2. Unfortunately, this means that my extension will no longer work since it hasn't been updated to meet the requirements of manifest v3.

After giving it some thought, I've decided not to invest any more time in developing Chrome extensions. I'm sorry for any inconvenience this may cause, and I appreciate your trust in using my extension.

Thank you for your understanding and support.

Cheers,

Sander
***



Take a quick look at on-page SEO factors of the page you visit in the browser. 

SEO Peek is a Chrome extension that checks the Document Object Model (DOM) of a page. There is no need to view the HTML source or inspect the DOM in the elements tab of Chrome DevTools.

SEO Peek checks the most relevant content elements and robot directives inside the DOM of both traditional server-side generated pages and client-side rendered pages like Single Page Applications (SPA).

Besides a check of HTML elements the extension also sends a request to the server to check the HTTP Status and several HTTP Response Headers like the HTTP Canonical header, X-Robots-Tag header and Vary header.

For all link elements and link headers the extension checks if the URL of a link element or link header refers to the URL of the current page (self-referential).

The HTTP status for the canonical URL is also being checked. When the response contains a redirect the extension detects the redirect and shows the response URL and its HTTP status.

The extension gives you insights into several relevant content elements and robot directives.

Content elements
- Page title
- Meta description
- Meta keywords
- H1 headings

Robot directives
- HTTP status
- Meta robots (Meta robots tag, X-Robots-Tag header)
- Canonicalization annotations (Canonical link tag, Canonical link header)
- Pagination annotations (Prev link tag, Next link tag)
- Mobile annotations (Rel-alternate-media annotation, Vary HTTP header, AMP HTML annotation)
- International annotations (Rel-alternate-hreflang annotation)                    

एक्सटेंशन की मूल जानकारी

नाम SEO Peek SEO Peek
ID lkkpfhgjmocgneajknedjhodkjkkclod
आधिकारिक URL https://chromewebstore.google.com/detail/seo-peek/lkkpfhgjmocgneajknedjhodkjkkclod
विवरण Just one click to get a quick peek into on-page SEO factors of the web page you visit in the browser.
फ़ाइल का आकार 61.75 KB
स्थापना संख्या 20,000
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2024-02-11
प्रकाशन तिथि 2019-01-27
रेटिंग 4.12/5 कुल 17 रेटिंग्स
डेवलपर https://sanderheilbron.nl
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.sanderheilbron.nl/seo-peek/
सहायता पृष्ठ URL https://github.com/sanderheilbron/seo-peek/issues
गोपनीयता नीति पृष्ठ URL https://www.sanderheilbron.nl/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SEO Peek",
    "version": "2.1.0",
    "manifest_version": 2,
    "description": "Just one click to get a quick peek into on-page SEO factors of the web page you visit in the browser.",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "SEO Peek",
        "default_popup": "popup.html"
    },
    "homepage_url": "https:\/\/www.sanderheilbron.nl\/seo-peek\/",
    "icons": {
        "128": "icons\/icon-128.png",
        "64": "icons\/icon-64.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "activeTab"
    ]
}