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ファイルをダウンロード

Google Docs Page Jumper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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'"
}