Traffic Light SEO

This extension will show basic SEO information about the page in coloured lights.

Traffic Light SEO là gì?

Traffic Light SEO là một tiện ích mở rộng Chrome được phát triển bởi domwoodman, và tính năng chính của nó là "This extension will show basic SEO information about the page in coloured lights.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Traffic Light SEO

Tải xuống các tệp mở rộng Traffic Light SEO dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This plugin tries to answer two questions as you're browsing around:

1. Is a page indexable?
2. What would that page look like in Google?

It uses traffic lights on the left hand side of the page and a pop-up to show you this.

You can see the screenshots for example of what this creates above. It's excellent for general awareness while browsing as well as raising awareness of SEO problems if it's installed on a wider team. (For example getting people to pay attention to what pages might look like in Google.)

To generate this information it looks at canonical in the page and headers, robots tags in the page and headers and the robots.txt file.

- You can customise the traffic lights
- You can customise the domains it appears on
- You can toggle it on and off with a shortcut                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Traffic Light SEO Traffic Light SEO
ID defnpiiopkbhkljhlheggmiigooagdoh
URL Chính Thức https://chromewebstore.google.com/detail/traffic-light-seo/defnpiiopkbhkljhlheggmiigooagdoh
Mô tả This extension will show basic SEO information about the page in coloured lights.
Kích Thước Tệp 37.55 KB
Số Lần Cài Đặt 363
Phiên Bản Hiện Tại 0.73
Cập Nhật Lần Cuối 2019-01-15
Ngày Phát Hành 2019-01-15
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển domwoodman
Loại Thanh Toán free
Trang Web Mở Rộng https://twitter.com/dom_woodman
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Traffic Light SEO",
    "description": "This extension will show basic SEO information about the page in coloured lights.",
    "version": "0.73",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "popup.html"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/traffic_light_16.png",
        "48": "images\/traffic_light_48.png",
        "128": "images\/traffic_light_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/traffic_light_16.png"
        },
        "default_title": "Google Mail",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "check_similarity.js",
        "google_snippet.html",
        "images\/*"
    ]
}