TitlePage Express

The TitlePage Express browser extension finds ISBNs while you browse the internet, providing quick access to TitlePage metadata.

TitlePage Express란 무엇입니까?

TitlePage Express은(는) Australian Publishers Association에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The TitlePage Express browser extension finds ISBNs while you browse the internet, providing quick access to TitlePage metadata."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

TitlePage Express 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        TitlePage Express automatically detects valid ISBNs (ISBN-13) on any webpage, and displays a small blue TitlePage icon next to them. 

This icon provides users with one click access to detailed information about that ISBN. 

Easily discover the title, subtitle, author and format information, along with images, metadata keywords, and more – all from an ISBN and one click.

TitlePage Express is powered by TitlePage, an Australian Publishers Association initiative. TitlePage provides access to bibliographic data, stock and pricing information for over 1.5 million titles from 180 Australian publishers and distributors. 

This project and API development has been supported by Restart Investment to Sustain and Expand (RISE) Fund – an Australian Government initiative.

This browser extension was inspired by our friends BookNet Canada, with their Bibli-O-Matic extension.                    

확장 프로그램 기본 정보

이름 TitlePage Express TitlePage Express
ID pahhdkoojnnofbdeiklgmbcmehhcfcni
공식 URL https://chromewebstore.google.com/detail/titlepage-express/pahhdkoojnnofbdeiklgmbcmehhcfcni
설명 The TitlePage Express browser extension finds ISBNs while you browse the internet, providing quick access to TitlePage metadata.
파일 크기 455 KB
설치 횟수 269
현재 버전 1.0.0
최근 업데이트 2023-06-06
출시 날짜 2023-06-01
평점 5.00/5 총 2 개의 평점
개발자 Australian Publishers Association
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.titlepage.com
도움말 페이지 URL https://titlepage.zendesk.com/hc/en-us/articles/19085360927129
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TitlePage Express",
    "description": "The TitlePage Express browser extension finds ISBNs while you browse the internet, providing quick access to TitlePage metadata.",
    "version": "1.0.0",
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "128": ".\/icon.png",
        "64": ".\/icon.png",
        "32": ".\/icon.png",
        "16": ".\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/content.css",
                "logo.png",
                "icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ]
}