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] là gì?

Academic Question [HEP/GR Tools] là một tiện ích mở rộng Chrome được phát triển bởi suchideas.com, và tính năng chính của nó là "Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Academic Question [HEP/GR Tools]

Tải xuống các tệp mở rộng Academic Question [HEP/GR Tools] dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Academic Question [HEP/GR Tools] Academic Question [HEP/GR Tools]
ID mmpkhojenaccdielhbgnkkonelldmcap
URL Chính Thức https://chromewebstore.google.com/detail/academic-question-hepgr-t/mmpkhojenaccdielhbgnkkonelldmcap
Mô tả Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.
Kích Thước Tệp 67.8 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2016-08-09
Ngày Phát Hành 2016-08-09
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển suchideas.com
Loại Thanh Toán free
Trang Web Mở Rộng http://suchideas.com/
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}