Traffic Light SEO

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

Traffic Light SEO란 무엇입니까?

Traffic Light SEO은(는) domwoodman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will show basic SEO information about the page in coloured lights."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Traffic Light SEO 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Traffic Light SEO Traffic Light SEO
ID defnpiiopkbhkljhlheggmiigooagdoh
공식 URL https://chromewebstore.google.com/detail/traffic-light-seo/defnpiiopkbhkljhlheggmiigooagdoh
설명 This extension will show basic SEO information about the page in coloured lights.
파일 크기 37.55 KB
설치 횟수 363
현재 버전 0.73
최근 업데이트 2019-01-15
출시 날짜 2019-01-15
평점 5.00/5 총 2 개의 평점
개발자 domwoodman
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/dom_woodman
지원되는 언어 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\/*"
    ]
}