StoryGraph Enhancement Tools

Adds some helpful UI elements, such as direct links to search your local library, to The StoryGraph.

StoryGraph Enhancement Toolsคืออะไร?

StoryGraph Enhancement Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย storygraphenhancementtoolsdev และคุณลักษณะหลักของมันคือ "Adds some helpful UI elements, such as direct links to search your local library, to The StoryGraph."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย StoryGraph Enhancement Tools

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

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

                        This extension was created for users of The StoryGraph who want to enhance their reading tracking experience. The extension adds some features to the website, including direct links to search for ebooks and audiobooks from your local library through the Libby or Overdrive platform and links to search for books to purchase through Amazon and eBooks.com,

Each type of link (library, Amazon, eBooks.com) can be turned on or off through the options panel. Users can choose either Overdrive or Libby as the library platform. Overdrive does not need any configuration from the user. To use Libby, you need is your library's name on the platform. Log into Libby, go to the Search menu, and find your library's name in the URL bar. To use this extension, add it to Chrome, then click on the icon in the extensions menu--enter your library's name in the settings menu that appears.

This extension also now adds a context menu item, Search The StoryGraph, that appears when text is selected on any web page. When clicked, it opens up a new tab with search result in The StoryGraph for the selected text. It works on any type of text: titles, author names, keywords, and ISBNs. 

This extension is not endorsed by, directly affiliated with, maintained, authorized, or sponsored by The StoryGraph or its developer team.                    

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

ชื่อ StoryGraph Enhancement Tools StoryGraph Enhancement Tools
ID fajbhmhackggapdpaameagbchbjfbnno
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/storygraph-enhancement-to/fajbhmhackggapdpaameagbchbjfbnno
คำอธิบาย Adds some helpful UI elements, such as direct links to search your local library, to The StoryGraph.
ขนาดไฟล์ 285 KB
จำนวนการติดตั้ง 340
เวอร์ชันปัจจุบัน 4.1.0
อัปเดตครั้งล่าสุด 2023-08-02
วันที่เผยแพร่ 2021-05-01
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา storygraphenhancementtoolsdev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "StoryGraph Enhancement Tools",
    "description": "Adds some helpful UI elements, such as direct links to search your local library, to The StoryGraph.",
    "version": "4.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/app.thestorygraph.com\/*"
            ],
            "js": [
                "src\/book-pane-links.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "icons": {
        "16": "\/src\/assets\/logo16.png",
        "32": "\/src\/assets\/logo32.png",
        "48": "\/src\/assets\/logo48.png",
        "128": "\/src\/assets\/logo128.png"
    },
    "action": {
        "default_popup": "src\/options\/options.html"
    }
}