GPeeker

Preview a web page from another web page without actually navigated.

GPeeker क्या है?

GPeeker Gidi Dafner द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Preview a web page from another web page without actually navigated."।

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

screenshot

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

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

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

                        Features:
* Press your favorite hotkey while hovering a link to open a popup with a preview of that link.
* The ability to make GPeeker ignore specific domains.

After four years, GPeeker is back baby!

This extension allows you to preview any link without actually navigate to it.

Just hover your mouse to the desired link, press the Shift key, and boom! You will see a popup with all the content from this link. Press Shift again, and boom! You will navigate to this page.

Of course, You can customize the Shift key.                    

एक्सटेंशन की मूल जानकारी

नाम GPeeker GPeeker
ID emmkcadnghjejdekddjhdhmhbojcchod
आधिकारिक URL https://chromewebstore.google.com/detail/gpeeker/emmkcadnghjejdekddjhdhmhbojcchod
विवरण Preview a web page from another web page without actually navigated.
फ़ाइल का आकार 15.81 KB
स्थापना संख्या 1,276
वर्तमान संस्करण 2.0.1
अंतिम अपडेट 2021-08-18
प्रकाशन तिथि 2015-12-04
रेटिंग 4.11/5 कुल 36 रेटिंग्स
डेवलपर Gidi Dafner
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPeeker",
    "description": "Preview a web page from another web page without actually navigated.",
    "version": "2.0.1",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "64": "\/images\/icon64.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "64": "\/images\/icon64.png",
        "128": "\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}