Google Docs Page Jumper

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

Was ist Google Docs Page Jumper?

Google Docs Page Jumper ist eine Chrome-Erweiterung, die von Tarek Alward entwickelt wurde, und ihr Hauptmerkmal ist "This extension lets you go to any page of a Google Docs document".

Erweiterungsscreenshots

screenshot

Google Docs Page Jumper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Docs Page Jumper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Google Docs Page Jumper Google Docs Page Jumper
ID ncgeflnanllngnoanebehpodalfhhpna
Offizielle URL https://chromewebstore.google.com/detail/google-docs-page-jumper/ncgeflnanllngnoanebehpodalfhhpna
Beschreibung This extension lets you go to any page of a Google Docs document
Dateigröße 92 KB
Installationsanzahl 836
Aktuelle Version 1.3
Letztes Update 2023-09-14
Veröffentlichungsdatum 2019-12-09
Bewertung 3.60/5 Insgesamt 10 Bewertungen
Entwickler Tarek Alward
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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'"
}