DOI Resolver

Quickly resolve digital object identifiers to their web destinations

DOI Resolverคืออะไร?

DOI Resolver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MDMower และคุณลักษณะหลักของมันคือ "Quickly resolve digital object identifiers to their web destinations"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DOI Resolver

ดาวน์โหลดไฟล์ส่วนขยาย DOI Resolver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Use this extension to quickly resolve DOI and ShortDOI codes via any one of several methods: extension button, right-click on selected text, or omnibox with keyword: doi.

DOI Resolver packs some great additional features, too:
1) Generate QR codes which can be scanned by smartphones to share a publication
2) Automatically convert DOI codes on web pages into links (optional)
3) Specify your own DOI resolver URL (useful if your institution provides a proxy service)
4) Generate formatted citations for publications

I take your privacy seriously. No user data is collected by this extension and no information is sent back to the author.

This is an open source project. Feel free to adapt the extension to your needs! https://github.com/mdmower/doi-resolver-chrome

Omnibox usage: Type doi and press the space key. Now you can input a DOI code and press enter to retrieve the web destination.

FAQ:
Q1) Can I get DOI Resolver to automatically resolve DOI codes when I enter them in the Omnibox?
A1) The Omnibox API from google prohibits extensions from hijacking input until a keyword is typed (in this case 'doi'). Really, it's better this way; otherwise, rogue extensions would all be fighting to take control of the Omnibox.

Change history: https://github.com/mdmower/doi-resolver-chrome/commits/main                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DOI Resolver DOI Resolver
ID goanbaknlbojfglcepjnankoobfakbpg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/doi-resolver/goanbaknlbojfglcepjnankoobfakbpg
คำอธิบาย Quickly resolve digital object identifiers to their web destinations
ขนาดไฟล์ 352 KB
จำนวนการติดตั้ง 5,754
เวอร์ชันปัจจุบัน 6.0.4
อัปเดตครั้งล่าสุด 2023-12-06
วันที่เผยแพร่ 2020-02-05
คะแนน 4.72/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา MDMower
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mdmower/doi-resolver-chrome
URL หน้าช่วยเหลือ https://github.com/mdmower/doi-resolver-chrome/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "sw.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "38": "icons\/icon38.png",
            "48": "icons\/icon48.png"
        },
        "default_popup": "bubble.html",
        "default_title": "__MSG_iconHover__"
    },
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "omnibox": {
        "keyword": "doi"
    },
    "optional_host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "optional_permissions": [
        "offscreen",
        "scripting",
        "tabs"
    ],
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "clipboardWrite",
        "storage"
    ],
    "version": "6.0.4"
}