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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Prevue Popup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": [
                ""
            ]
        }
    ]
}