Learn pdf opener

Opens pdfs in learn in a new tab

Learn pdf opener क्या है?

Learn pdf opener caldwellbenjamin8 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens pdfs in learn in a new tab"।

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

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

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

                        Open the pdf you are currently viewing on uwaterloo learn in a new tab. To use either click on the icon or press control+shift+M or command+shift+M on mac. To change your keyboard shortcut go to chrome://extensions and key assignment for Open pdf in new tab under Learn pdf opener, using the 'Keyboard shortcuts' link at the bottom right of the page.                    

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

नाम Learn pdf opener Learn pdf opener
ID bdgfjdopnpnddliipiophkoenicppjfo
आधिकारिक URL https://chrome.google.com/webstore/detail/learn-pdf-opener/bdgfjdopnpnddliipiophkoenicppjfo
विवरण Opens pdfs in learn in a new tab
फ़ाइल का आकार 16.52 KB
स्थापना संख्या 15
वर्तमान संस्करण 2.0
अंतिम अपडेट 2015-09-04
प्रकाशन तिथि 2015-09-04
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर caldwellbenjamin8
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Learn pdf opener",
    "description": "Opens pdfs in learn in a new tab",
    "version": "2.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "index.js"
        ],
        "persistent": false
    },
    "commands": {
        "open-pdf": {
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "windows": "Ctrl+Shift+M",
                "mac": "Command+Shift+M",
                "chromeos": "Ctrl+Shift+M",
                "linux": "Ctrl+Shift+M"
            },
            "description": "Open pdf in new tab"
        }
    },
    "permissions": [
        "activeTab"
    ]
}