SEO helper

helps with tasks like seeing if a page is indexable

什么是SEO helper?

SEO helper是由https://valentin.app开发的Chrome扩展程序,该扩展的主要功能是“helps with tasks like seeing if a page is indexable”。

扩展截图

screenshot
screenshot

下载SEO helper扩展crx文件

下载SEO helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 SEO helper SEO helper
ID dcjpekmglilnkcbaocogljaiinepdjbm
官方URL https://chromewebstore.google.com/detail/seo-helper/dcjpekmglilnkcbaocogljaiinepdjbm
简介 helps with tasks like seeing if a page is indexable
文件大小 191 KB
安装次数 247
当前版本 2.0
更新时间 2018-12-03
上架时间 2018-12-02
评分 5.00/5 共3次评分
开发者 https://valentin.app
电子邮箱 [email protected]
付费类型 free
扩展官网 https://valentin.app/robotsmeta.html
帮助页面URL https://twitter.com/VorticonCmdr
支持的语言 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"
}