Google Docs Page Jumper

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

Wat is Google Docs Page Jumper?

Google Docs Page Jumper is een Chrome-extensie ontwikkeld door Tarek Alward, en de belangrijkste functie is "This extension lets you go to any page of a Google Docs document".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Google Docs Page Jumper

Download Google Docs Page Jumper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Google Docs Page Jumper Google Docs Page Jumper
ID ncgeflnanllngnoanebehpodalfhhpna
Officiële URL https://chromewebstore.google.com/detail/google-docs-page-jumper/ncgeflnanllngnoanebehpodalfhhpna
Beschrijving This extension lets you go to any page of a Google Docs document
Bestandsgrootte 92 KB
Aantal Installaties 836
Huidige Versie 1.3
Laatst Bijgewerkt 2023-09-14
Publicatiedatum 2019-12-09
Beoordeling 3.60/5 Totaal 10 Beoordelingen
Ontwikkelaar Tarek Alward
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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'"
}