Promptly

Edit any webpage instantly

什么是Promptly?

Promptly是由eMiner开发的Chrome扩展程序,该扩展的主要功能是“Edit any webpage instantly”。

扩展截图

screenshot
screenshot

下载Promptly扩展crx文件

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

扩展使用说明

                        Edit texts from web pages without any need for programming knowledge.                    

扩展基本信息

名称 Promptly Promptly
ID glmodacadmneeefbpfecajcgfcehclea
官方URL https://chromewebstore.google.com/detail/promptly/glmodacadmneeefbpfecajcgfcehclea
简介 Edit any webpage instantly
文件大小 72.09 KB
安装次数 36
当前版本 1.0.0
更新时间 2022-08-22
上架时间 2022-08-21
开发者 eMiner
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://eminer.app/terms
支持的语言 en
manifest.json
{
    "version": "1.0.0",
    "manifest_version": 3,
    "minimum_chrome_version": "92",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "short_name": "__MSG_slug__",
    "author": "__MSG_author__",
    "icons": {
        "16": "images\/16.png",
        "24": "images\/24.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "64": "images\/64.png",
        "128": "images\/128.png",
        "256": "images\/256.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_name__",
        "default_icon": {
            "16": "images\/16.png",
            "24": "images\/24.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "64": "images\/64.png",
            "128": "images\/128.png",
            "256": "images\/256.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}