Google Docs Page Jumper

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

Google Docs Page Jumper là gì?

Google Docs Page Jumper là một tiện ích mở rộng Chrome được phát triển bởi Tarek Alward, và tính năng chính của nó là "This extension lets you go to any page of a Google Docs document".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Docs Page Jumper

Tải xuống các tệp mở rộng Google Docs Page Jumper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Docs Page Jumper Google Docs Page Jumper
ID ncgeflnanllngnoanebehpodalfhhpna
URL Chính Thức https://chromewebstore.google.com/detail/google-docs-page-jumper/ncgeflnanllngnoanebehpodalfhhpna
Mô tả This extension lets you go to any page of a Google Docs document
Kích Thước Tệp 92 KB
Số Lần Cài Đặt 836
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2023-09-14
Ngày Phát Hành 2019-12-09
Đánh Giá 3.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Tarek Alward
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}