Wing Scholar summary add-on

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

Qu'est-ce que Wing Scholar summary add-on ?

Wing Scholar summary add-on est une extension Chrome développée par https://sites.google.com/site/wingnus, et sa fonction principale est "This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Wing Scholar summary add-on

Téléchargez les fichiers d'extension Wing Scholar summary add-on au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Wing Scholar summary add-on Wing Scholar summary add-on
ID ndhnkphdpaapcalgmchakcadgmcphagh
URL Officiel https://chromewebstore.google.com/detail/wing-scholar-summary-add/ndhnkphdpaapcalgmchakcadgmcphagh
Description This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.
Taille du Fichier 435 KB
Nombre d'Installations 260
Version Actuelle 1.0.10
Dernière Mise à Jour 2014-11-17
Date de Publication 2014-11-16
Évaluation 1.00/5 Total 1 Évaluations
Développeur https://sites.google.com/site/wingnus
Type de Paiement free
Site Web de l'Extension http://wing.comp.nus.edu.sg/portal/
Langues Prises en Charge 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"
        }
    }
}