Heads Up

View your data for easier developing.

什么是Heads Up?

Heads Up是由De Voorhoede开发的Chrome扩展程序,该扩展的主要功能是“View your data for easier developing.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Heads Up扩展crx文件

下载Heads Up扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Heads Up is a tool for web developers to easily and visually see the data in your . This prevents time spent viewing the source code of the page you are testing.

Heads Up works with any site and web app. Supports local host and hot module reloading.

Heads Up currently supports:
- Inspecting page for application and search related metadata.
- Previewing cards for Facebook, LinkedIn, Slack, Twitter and WhatsApp.

Heads Up is open source. You can view the source code on Github at: https://github.com/voorhoede/heads-up.                    

扩展基本信息

名称 Heads Up Heads Up
ID ajjdmakdoicbgmgoacfmlplnefljpcke
官方URL https://chromewebstore.google.com/detail/heads-up/ajjdmakdoicbgmgoacfmlplnefljpcke
简介 View your data for easier developing.
文件大小 445 KB
安装次数 140
当前版本 2.3.1
更新时间 2023-05-15
上架时间 2020-02-08
评分 5.00/5 共3次评分
开发者 De Voorhoede
电子邮箱 [email protected]
付费类型 free
扩展官网 https://headsup.voorhoede.nl/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Heads Up",
    "short_name": "Heads Up",
    "version": "2.3.1",
    "description": "View your  data for easier developing.",
    "author": "De Voorhoede",
    "minimum_chrome_version": "90.0",
    "icons": {
        "36": "devtools\/assets\/icons\/icon-36.png",
        "96": "devtools\/assets\/icons\/icon-96.png"
    },
    "background": {
        "service_worker": "devtools\/background.js",
        "type": "module"
    },
    "devtools_page": "devtools\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "devtools\/content.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "manifest_version": 3
}