Academic Question [HEP/GR Tools]

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

Was ist Academic Question [HEP/GR Tools]?

Academic Question [HEP/GR Tools] ist eine Chrome-Erweiterung, die von suchideas.com entwickelt wurde, und ihr Hauptmerkmal ist "Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.".

Erweiterungsscreenshots

screenshot
screenshot

Academic Question [HEP/GR Tools]-Erweiterungs-CRX-Datei herunterladen

Laden Sie Academic Question [HEP/GR Tools]-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Academic Question [HEP/GR Tools] Academic Question [HEP/GR Tools]
ID mmpkhojenaccdielhbgnkkonelldmcap
Offizielle URL https://chromewebstore.google.com/detail/academic-question-hepgr-t/mmpkhojenaccdielhbgnkkonelldmcap
Beschreibung Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.
Dateigröße 67.8 KB
Installationsanzahl 45
Aktuelle Version 0.2
Letztes Update 2016-08-09
Veröffentlichungsdatum 2016-08-09
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler suchideas.com
Zahlungsart free
Erweiterungswebsite http://suchideas.com/
Unterstützte Sprachen 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
        }
    ]
}