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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Wing Scholar summary add-on

Λήψη αρχείων επέκτασης Wing Scholar summary add-on σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
        }
    }
}