BibSonomy Scholar

This extensions tightly integrates BibSonomy with your browser.

Τι είναι το BibSonomy Scholar;

Το BibSonomy Scholar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.bibsonomy.org, και η κύρια λειτουργία του είναι "This extensions tightly integrates BibSonomy with your browser.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης BibSonomy Scholar

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

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

                        BibSonomy Scholar currently supports direct bookmarking via a simple button as well as managing publication via Google Scholar.

The BibSonomy Scholar button indicates whether a bookmark has already been posted and provides functionality to view, post and update a URL without leaving the current page.

Furthermore it connects to Google Scholar pages including indicators marking publication you already posted, inline posting new publications, quickly editing posted publications, directly adding missing PDFs to your publications, as well as several other possibilities to access BibSonomy features with much less hassle.

For a full set of features, documentation and reporting of bugs or feature requests we refer to our website.

Last updates:
* 1.6.1: fix after Google layout change
* 1.6.0: add BibTeX preview and some interface fixes
* 1.5.0: add settings dialog for API key; minor interface fixes
* 1.4.2: fix tags posted to BibSonomy
* 1.4.1: fix typeahead menu position, fix typeahead for posted bookmarks, fix posting PDFs for plain HTTP URLs, optimize PDF handling when posting publications 
* 1.4: Add bookmark search, minor bug fixes
* 1.3.1: Remove tag counts from tags posted to BibSonomy
* 1.3: Add tag autocompletion
* 1.2: Add direct bookmark support
* 1.1.1: Fix missing PDF upload button                    

Βασικές Πληροφορίες Επέκτασης

Όνομα BibSonomy Scholar BibSonomy Scholar
ID nfncjdnkilenkgnhchaapiiboaimpoon
Επίσημο URL https://chromewebstore.google.com/detail/bibsonomy-scholar/nfncjdnkilenkgnhchaapiiboaimpoon
Περιγραφή This extensions tightly integrates BibSonomy with your browser.
Μέγεθος Αρχείου 2.08 MB
Αριθμός Εγκαταστάσεων 271
Τρέχουσα Έκδοση 1.6.2
Τελευταία Ενημέρωση 2022-09-29
Ημερομηνία Δημοσίευσης 2017-09-28
Προγραμματιστής https://www.bibsonomy.org
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://bitbucket.org/bibsonomy/bibsonomy-google-scholar-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://bitbucket.org/bibsonomy/bibsonomy-google-scholar-extension
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BibSonomy Scholar",
    "description": "This extensions tightly integrates BibSonomy with your browser.",
    "version": "1.6.2",
    "icons": {
        "16": "res\/B_blue.png",
        "38": "res\/B_blue.png",
        "48": "res\/B_blue.png",
        "128": "res\/B_blue.png"
    },
    "background": {
        "scripts": [
            "lib\/md5.js",
            "bibsonomyUtils.js",
            "bibsonomy-lib.js",
            "scholar-lib.js",
            "bg.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/scholar*"
            ],
            "js": [
                "lib\/handlebars-v4.0.4.js",
                "lib\/md5.js",
                "scholar.js"
            ],
            "css": [
                "lib\/font-awesome-4.4.0\/css\/font-awesome.min.css",
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "res\/*",
        "lib\/font-awesome-4.4.0\/fonts\/*"
    ],
    "page_action": {
        "default_icon": {
            "19": "res\/B_white.png",
            "38": "res\/B_white.png"
        },
        "default_title": "BibSonomy Scholar",
        "default_popup": "action.html"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Space",
                "windows": "Ctrl+Space",
                "mac": "Command+Space"
            }
        }
    }
}