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은(는) storygraphenhancementtoolsdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds some helpful UI elements, such as direct links to search your local library, to The StoryGraph."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

StoryGraph Enhancement Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}