BibTexMe

This extension converts Current web/Pdf-tab and any marked search-term to a BibTex entry.

Τι είναι το BibTexMe;

Το BibTexMe είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "This extension converts Current web/Pdf-tab and any marked search-term to a BibTex entry.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension has two purposes:

Key Features:
--------------------------
-> cite web-page/pdf WITH publication-date and Access-date!
-> find sources on SPRINGER and WORLDCAT and cite them with a single click. Simply mark the search-terms in your text and hit the button!
-> customizable text "Accessed on:" for the access date in online sources
--------------------------

Remember: you need \usepackage{hyperref} for links to work properly!


1. If you want to cite a web-page or pdf you currently have opened, you can simply click the button and it copies a BibTex entry to the clipboard. It fetches title, url, accessed on date.

It also gets the publishing year and month by scraping web.archive.org for the exact url!

2. If you want to cite or find a source, you just mark the title/author name/doi or whatever, and press the button while your text is marked. The extension compiles a list of Sources matching your search. By clicking on a source it automatically creates a matching BibTex Entry in your clipboard. 

Currently it is capable of searching Springer and Worldcat(scraping) but further implementation would be interesting.

3. The Text "Accessed on:" in your bibtex entry is customizable through the Options!

Now you just have to paste your entries somewhere in your bib file and voila you can cite them as usual!                    

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

Όνομα BibTexMe BibTexMe
ID laicgabamgnpheichgkfgedjnogpmmlc
Επίσημο URL https://chromewebstore.google.com/detail/bibtexme/laicgabamgnpheichgkfgedjnogpmmlc
Περιγραφή This extension converts Current web/Pdf-tab and any marked search-term to a BibTex entry.
Μέγεθος Αρχείου 122 KB
Αριθμός Εγκαταστάσεων 680
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2016-06-28
Ημερομηνία Δημοσίευσης 2016-06-28
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BibTexMe",
    "description": "This extension converts Current web\/Pdf-tab and any marked search-term to a BibTex entry.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Make me TeX!"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "http:\/\/www.worldcat.org\/*",
        "http:\/\/web.archive.org\/*",
        "http:\/\/api.springer.com\/*"
    ]
}