Google Docs Page Jumper

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

Vad är Google Docs Page Jumper?

Google Docs Page Jumper är en Chrome-tillägg utvecklad av Tarek Alward, och dess huvudfunktion är "This extension lets you go to any page of a Google Docs document".

Tilläggsskärmbilder

screenshot

Ladda ner Google Docs Page Jumper-förlängningens CRX-fil

Ladda ner Google Docs Page Jumper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Google Docs Page Jumper Google Docs Page Jumper
ID ncgeflnanllngnoanebehpodalfhhpna
Officiell webbadress https://chromewebstore.google.com/detail/google-docs-page-jumper/ncgeflnanllngnoanebehpodalfhhpna
Beskrivning This extension lets you go to any page of a Google Docs document
Filstorlek 92 KB
Antal Installationer 836
Aktuell Version 1.3
Senast Uppdaterad 2023-09-14
Publiceringsdatum 2019-12-09
Betyg 3.60/5 Totalt 10 Betyg
Utvecklare Tarek Alward
E-post [email protected]
Betalningssätt free
Stödda Språk 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'"
}