Google Docs Page Jumper

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

ما هو Google Docs Page Jumper؟

Google Docs Page Jumper هو إضافة Chrome تم تطويرها بواسطة Tarek Alward، والميزة الرئيسية لها هي "This extension lets you go to any page of a Google Docs document".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Google Docs Page Jumper

قم بتنزيل ملفات الامتداد Google Docs Page Jumper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Google Docs Page Jumper Google Docs Page Jumper
ID ncgeflnanllngnoanebehpodalfhhpna
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-docs-page-jumper/ncgeflnanllngnoanebehpodalfhhpna
الوصف This extension lets you go to any page of a Google Docs document
حجم الملف 92 KB
عدد التثبيتات 836
النسخة الحالية 1.3
آخر تحديث 2023-09-14
تاريخ النشر 2019-12-09
تقييم 3.60/5 مجموع تقييمات 10
المطور Tarek Alward
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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'"
}