Prevue Popup

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

Was ist Prevue Popup?

Prevue Popup ist eine Chrome-Erweiterung, die von Cosmin entwickelt wurde, und ihr Hauptmerkmal ist "Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…".

Erweiterungsscreenshots

screenshot

Prevue Popup-Erweiterungs-CRX-Datei herunterladen

Laden Sie Prevue Popup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Prevue Popup Prevue Popup
ID afencccmfcofdgnigbenkpplpanigajd
Offizielle URL https://chromewebstore.google.com/detail/prevue-popup/afencccmfcofdgnigbenkpplpanigajd
Beschreibung Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…
Dateigröße 71.21 KB
Installationsanzahl 625
Aktuelle Version 0.4.6
Letztes Update 2022-10-01
Veröffentlichungsdatum 2022-03-20
Bewertung 5.00/5 Insgesamt 12 Bewertungen
Entwickler Cosmin
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}