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]是由suchideas.com开发的Chrome扩展程序,该扩展的主要功能是“Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.”。

扩展截图

screenshot
screenshot

下载Academic Question [HEP/GR Tools]扩展crx文件

下载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
        }
    ]
}