Wing Scholar summary add-on

This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.

Wing Scholar summary add-on क्या है?

Wing Scholar summary add-on https://sites.google.com/site/wingnus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries."।

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

screenshot

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

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

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

                        This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.                    

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

नाम Wing Scholar summary add-on Wing Scholar summary add-on
ID ndhnkphdpaapcalgmchakcadgmcphagh
आधिकारिक URL https://chromewebstore.google.com/detail/wing-scholar-summary-add/ndhnkphdpaapcalgmchakcadgmcphagh
विवरण This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.
फ़ाइल का आकार 435 KB
स्थापना संख्या 260
वर्तमान संस्करण 1.0.10
अंतिम अपडेट 2014-11-17
प्रकाशन तिथि 2014-11-16
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर https://sites.google.com/site/wingnus
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://wing.comp.nus.edu.sg/portal/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wing Scholar summary add-on",
    "description": "",
    "version": "1.0.10",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "http:\/\/scholar.google.com.sg\/*",
        "tabs",
        "storage",
        "http:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "popup.html"
    ],
    "background": {
        "scripts": [
            "background.js",
            "jquery-1.11.0.min.js",
            "jquery.hotkeys-0.7.9.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/scholar.google.com.sg\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "jquery.hotkeys-0.7.9.min.js"
            ],
            "css": [
                "core.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "commands": {
        "enable": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Enable the extension"
        },
        "disable": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Disable the extension"
        },
        "cycle": {
            "suggested_key": {
                "default": "Ctrl+Shift+H"
            },
            "description": "Cycle through available display choices"
        }
    }
}