Google Docs Page Jumper

This extension lets you go to any page of a Google Docs document

Google Docs Page Jumper란 무엇입니까?

Google Docs Page Jumper은(는) Tarek Alward에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension lets you go to any page of a Google Docs document"입니다.

확장 프로그램 스크린샷

screenshot

Google Docs Page Jumper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A simple chrome extension that enables you to jump to any page on a Google Doc instead of scrolling.

1.3 Update:
- Added autofocus for page input without additional click
- Implemented confirmation of page by pressing Enter key
- Extension closes on confirmation                    

확장 프로그램 기본 정보

이름 Google Docs Page Jumper Google Docs Page Jumper
ID ncgeflnanllngnoanebehpodalfhhpna
공식 URL https://chromewebstore.google.com/detail/google-docs-page-jumper/ncgeflnanllngnoanebehpodalfhhpna
설명 This extension lets you go to any page of a Google Docs document
파일 크기 92 KB
설치 횟수 836
현재 버전 1.3
최근 업데이트 2023-09-14
출시 날짜 2019-12-09
평점 3.60/5 총 10 개의 평점
개발자 Tarek Alward
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Docs Page Jumper",
    "description": "This extension lets you go to any page of a Google Docs document",
    "version": "1.3",
    "homepage_url": "https:\/\/github.com\/tareeko\/gdocs-page-jumper",
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html",
        "default_title": "PageJumper"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/docs.google.com\/document\/d*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/; object-src 'self'"
}