Google Docs Page Jumper

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

What is Google Docs Page Jumper?

Google Docs Page Jumper is a Chrome extension developed by Tarek Alward, and its main feature is "This extension lets you go to any page of a Google Docs document".

Extension Screenshots

screenshot

Download Google Docs Page Jumper Extension CRX File

Download Google Docs Page Jumper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Google Docs Page Jumper Google Docs Page Jumper
ID ncgeflnanllngnoanebehpodalfhhpna
Official URL https://chromewebstore.google.com/detail/google-docs-page-jumper/ncgeflnanllngnoanebehpodalfhhpna
Description This extension lets you go to any page of a Google Docs document
File Size 92 KB
Installation Count 836
Current Version 1.3
Last Updated 2023-09-14
Publish Date 2019-12-09
Rating 3.60/5 Total 10 Ratings
Developer Tarek Alward
Email [email protected]
Payment Type free
Supported Languages 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'"
}