Link Preview

Right click on a link to quickly preview its content in a nice summary card, without leaving the page.

Link Preview क्या है?

Link Preview http://codeinchaos.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Right click on a link to quickly preview its content in a nice summary card, without leaving the page."।

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

screenshot
screenshot

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

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

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

                        Right click on a link to quickly preview its content in a nice summary card, without leaving the page!

NOTE: there is currently a bug on HTTPS pages with Embedly Cards, we are working on an update with Embedly's help!                    

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

नाम Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
आधिकारिक URL https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
विवरण Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
फ़ाइल का आकार 18.83 KB
स्थापना संख्या 373
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2014-08-30
प्रकाशन तिथि 2014-08-30
रेटिंग 1.38/5 कुल 8 रेटिंग्स
डेवलपर http://codeinchaos.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/codeinchaos/chrome-link-preview/
सहायता पृष्ठ URL https://github.com/codeinchaos/chrome-link-preview/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.0",
    "manifest_version": 2,
    "name": "Link Preview",
    "description": "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.",
    "author": "Ahmad Nassri  (http:\/\/ahmadnassri.com)",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "modal.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "https:\/\/cdn.embedly.com\/widgets\/platform.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.embedly.com\/widgets\/; object-src 'self'",
    "web_accessible_resources": [
        "popup.html"
    ]
}