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'est-ce que Prevue Popup ?

Prevue Popup est une extension Chrome développée par Cosmin, et sa fonction principale est "Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Prevue Popup

Téléchargez les fichiers d'extension Prevue Popup au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Prevue Popup Prevue Popup
ID afencccmfcofdgnigbenkpplpanigajd
URL Officiel https://chromewebstore.google.com/detail/prevue-popup/afencccmfcofdgnigbenkpplpanigajd
Description Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…
Taille du Fichier 71.21 KB
Nombre d'Installations 625
Version Actuelle 0.4.6
Dernière Mise à Jour 2022-10-01
Date de Publication 2022-03-20
Évaluation 5.00/5 Total 12 Évaluations
Développeur Cosmin
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}