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文件

下載AMP Validator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
        "*:\/\/*\/",
        ""
    ]
}