Academic Question [HEP/GR Tools]

Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.

Τι είναι το Academic Question [HEP/GR Tools];

Το Academic Question [HEP/GR Tools] είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον suchideas.com, και η κύρια λειτουργία του είναι "Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Academic Question [HEP/GR Tools]

Λήψη αρχείων επέκτασης Academic Question [HEP/GR Tools] σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Hi! This is a quick bit of code I knocked up for myself a while back, which other theoretical physicists out there might find helpful.

It has two main features:

* Provides a toolbar button allowing quick access to a search interface for INSPIRE, and also to arXiv PDFs via the normal identifier.
* Allows you to select text on any page (including inside PDFs you open in the browser) and right-click to open any arXiv PDFs references by ID in that selection.

Note this is an unofficial extension, not endorsed by INSPIRE or arXiv.                    

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

Όνομα Academic Question [HEP/GR Tools] Academic Question [HEP/GR Tools]
ID mmpkhojenaccdielhbgnkkonelldmcap
Επίσημο URL https://chromewebstore.google.com/detail/academic-question-hepgr-t/mmpkhojenaccdielhbgnkkonelldmcap
Περιγραφή Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.
Μέγεθος Αρχείου 67.8 KB
Αριθμός Εγκαταστάσεων 45
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2016-08-09
Ημερομηνία Δημοσίευσης 2016-08-09
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής suchideas.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://suchideas.com/
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Academic Question [HEP\/GR Tools]",
    "short_name": "Academic Question",
    "description": "Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.",
    "author": "Carl Turner [suchideas.com]",
    "version": "0.2",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "32": "icon.png"
    },
    "permissions": [
        "http:\/\/*.inspirehep.net\/",
        "downloads",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ]
}