PageMark Navigator

Mark your position on the page and jump between marks using F2 key

PageMark Navigator là gì?

PageMark Navigator là một tiện ích mở rộng Chrome được phát triển bởi mondersky, và tính năng chính của nó là "Mark your position on the page and jump between marks using F2 key".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PageMark Navigator

Tải xuống các tệp mở rộng PageMark Navigator 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

                        Say goodbye to repetitive scrolling and welcome effortless navigation within your web pages.  You can effortlessly move between important positions, saving time and effort. Mark by pressing ctrl + F2 and then jump between marked positions by pressing F2, you can also add new markers and navigate between them from the extension menu.
This extension is designed in a way that you won't have to do any extra step to save and navigate between markers.
Saved positions are marked by a little flag icon close to the scrollbar and can be removed at any time from the extension menu.
You can see all the markers for a specific page by opening the extension menu on that page.

Here are some examples of how you can use the extension:

Bookmark Your Position:
Mark your current position on a page before scrolling down. This way, you can easily return to the marked position later without forgetting where you were.

Compare Multiple Regions:
Easily compare different regions on a page by marking their positions. This allows you to jump between the marked points and analyze the content or data efficiently.

Test Dynamic Elements:
Efficiently test multiple dynamic elements interacting with each other. Mark their positions to quickly navigate and interact with each element during testing and experimentation.

Create Shortcuts for Frequently Visited Positions:
Set up shortcuts to instantly scroll to specific positions you frequently visit on a particular page. Save time by avoiding manual scrolling to essential sections whenever you open that page.

Keyboard Shortcuts:
- CTRL + F2: put a marker on the current position
- F2: jump to the next marker

Upcoming Features:
- settings page
- ability to jump between tabs
- ability to hide/show marker icons
- ability to name markers
- ability to remove marker using keyboard shortcut
- ability to resize markers
- ability to change the keyboard shortcuts
- separate markers page

Don't hesitate to let me know if you have any suggestions.                    

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

Tên PageMark Navigator PageMark Navigator
ID hfdejmgblclcececnfkoeckaghfglelp
URL Chính Thức https://chromewebstore.google.com/detail/pagemark-navigator/hfdejmgblclcececnfkoeckaghfglelp
Mô tả Mark your position on the page and jump between marks using F2 key
Kích Thước Tệp 181 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-07-18
Ngày Phát Hành 2023-07-16
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển mondersky
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",
    "name": "PageMark Navigator",
    "version": "1.0",
    "description": "Mark your position on the page and jump between marks using F2 key",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "icons": {
        "128": "img\/logo.png"
    },
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": "img\/logo.png",
        "default_title": "PageMark Navigator"
    },
    "options_page": "html\/options.html",
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "js\/jquery.js",
                "js\/init.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/marker.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}