AMP Validator

Automatically checks each page for AMP validation.

AMP Validator란 무엇입니까?

AMP Validator은(는) https://validator.ampproject.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically checks each page for AMP validation."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

AMP Validator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The AMP Validator will check the current page to see if it is an AMP page and then run it through the AMP validator and report if the page passes (green) or fails (red) via the extension icon.

If there are any warnings or errors it'll list the number underneath the extension icon and clicking the icon will display the warnings and/or errors.

If the current page is not an AMP page and one is available via  the extension icon turns blue and clicking it will load the AMP version of that page.

By installing this item, you agree to the Google Terms of Service and Privacy Policy at https://policies.google.com/.                    

확장 프로그램 기본 정보

이름 AMP Validator AMP Validator
ID nmoffdblmcmgeicmolmhobpoocbbmknc
공식 URL https://chromewebstore.google.com/detail/amp-validator/nmoffdblmcmgeicmolmhobpoocbbmknc
설명 Automatically checks each page for AMP validation.
파일 크기 2.51 MB
설치 횟수 70,128
현재 버전 1.3.1
최근 업데이트 2024-01-17
출시 날짜 2020-02-12
평점 4.26/5 총 95 개의 평점
개발자 https://validator.ampproject.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://amp.dev/
개인정보 보호 정책 페이지 URL https://policies.google.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "1.3.1",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_icon": {
            "19": "no-amp-128.png",
            "38": "no-amp-38.png"
        }
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "homepage_url": "https:\/\/amp.dev",
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/",
        ""
    ]
}