Google Docs Page Jumper

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

Apa itu Google Docs Page Jumper?

Google Docs Page Jumper adalah ekstensi Chrome yang dikembangkan oleh Tarek Alward, dan fitur utamanya adalah "This extension lets you go to any page of a Google Docs document".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Google Docs Page Jumper

Unduh file ekstensi Google Docs Page Jumper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Google Docs Page Jumper Google Docs Page Jumper
ID ncgeflnanllngnoanebehpodalfhhpna
URL Resmi https://chromewebstore.google.com/detail/google-docs-page-jumper/ncgeflnanllngnoanebehpodalfhhpna
Deskripsi This extension lets you go to any page of a Google Docs document
Ukuran File 92 KB
Jumlah Instalasi 836
Versi Saat Ini 1.3
Terakhir Diperbarui 2023-09-14
Tanggal Publikasi 2019-12-09
Penilaian 3.60/5 Total 10 Penilaian
Pengembang Tarek Alward
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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'"
}