SEO helper

helps with tasks like seeing if a page is indexable

What is SEO helper?

SEO helper is a Chrome extension developed by https://valentin.app, and its main feature is "helps with tasks like seeing if a page is indexable".

Extension Screenshots

screenshot
screenshot

Download SEO helper Extension CRX File

Download SEO helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
Official URL https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
Description helps with tasks like seeing if a page is indexable
File Size 191 KB
Installation Count 247
Current Version 2.0
Last Updated 2018-12-03
Publish Date 2018-12-02
Rating 5.00/5 Total 3 Ratings
Developer https://valentin.app
Email [email protected]
Payment Type free
Extension Website https://valentin.app/robotsmeta.html
Help Page URL https://twitter.com/VorticonCmdr
Supported Languages 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"
}