Academic Question [HEP/GR Tools]

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

Cos'è Academic Question [HEP/GR Tools]?

Academic Question [HEP/GR Tools] è un'estensione di Chrome sviluppata da suchideas.com, e la sua funzione principale è "Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Academic Question [HEP/GR Tools]

Scarica i file di estensione Academic Question [HEP/GR Tools] in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Academic Question [HEP/GR Tools] Academic Question [HEP/GR Tools]
ID mmpkhojenaccdielhbgnkkonelldmcap
URL Ufficiale https://chromewebstore.google.com/detail/academic-question-hepgr-t/mmpkhojenaccdielhbgnkkonelldmcap
Descrizione Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.
Dimensione del File 67.8 KB
Conteggio Installazioni 45
Versione Corrente 0.2
Ultimo Aggiornamento 2016-08-09
Data di Pubblicazione 2016-08-09
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore suchideas.com
Tipo di Pagamento free
Sito Web dell'Estensione http://suchideas.com/
Lingue Supportate 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
        }
    ]
}