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
官方網址 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"
}