Prevue Popup

Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…

什么是Prevue Popup?

Prevue Popup是由Cosmin开发的Chrome扩展程序,该扩展的主要功能是“Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…”。

扩展截图

screenshot

下载Prevue Popup扩展crx文件

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

扩展使用说明

                        Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in a different tab, or changing the current URL.

The way it works is fairly straight forward, it simply opens an iframe element as a popup inside the current site.

The extension features and extensive options page which allows you to customise it to your liking.                    

扩展基本信息

名称 Prevue Popup Prevue Popup
ID afencccmfcofdgnigbenkpplpanigajd
官方URL https://chromewebstore.google.com/detail/prevue-popup/afencccmfcofdgnigbenkpplpanigajd
简介 Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…
文件大小 71.21 KB
安装次数 625
当前版本 0.4.6
更新时间 2022-10-01
上架时间 2022-03-20
评分 5.00/5 共12次评分
开发者 Cosmin
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_title": "Prevue Popup Options",
        "default_popup": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "prevue.css"
            ],
            "js": [
                "prevue.js"
            ],
            "all_frames": true
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "disable-csp",
                "enabled": false,
                "path": "rules.json"
            }
        ]
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "512": "pp.png"
    },
    "manifest_version": 3,
    "name": "Prevue Popup",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "history",
        "storage",
        "scripting",
        "declarativeNetRequest"
    ],
    "version": "0.4.6",
    "web_accessible_resources": [
        {
            "resources": [
                "options.html",
                "prevue.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}