Prevue Popup

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

¿Qué es Prevue Popup?

Prevue Popup es una extensión de Chrome desarrollada por Cosmin, y su función principal es "Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Prevue Popup

Descarga archivos de extensión Prevue Popup en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Prevue Popup Prevue Popup
ID afencccmfcofdgnigbenkpplpanigajd
URL Oficial https://chromewebstore.google.com/detail/prevue-popup/afencccmfcofdgnigbenkpplpanigajd
Descripción Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…
Tamaño del Archivo 71.21 KB
Cantidad de Instalaciones 625
Versión Actual 0.4.6
Última Actualización 2022-10-01
Fecha de Publicación 2022-03-20
Calificación 5.00/5 Total de 12 Calificaciones
Desarrollador Cosmin
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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": [
                ""
            ]
        }
    ]
}