Pagemarker

A simple Chrome extension that allows you to save positions in a page for fast re-visit

Pagemarker là gì?

Pagemarker là một tiện ích mở rộng Chrome được phát triển bởi bravebeetle, và tính năng chính của nó là "A simple Chrome extension that allows you to save positions in a page for fast re-visit".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Pagemarker 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 allows you to save the scroll bar position in a regular web page for fast re-visit.

Once a page is loaded, click the Pagemarker extension icon and a bar with three default buttons will appear at the bottom right corner of your window; clicking the icon again will temporary hide it.

Default buttons:

1.Pagemark Button: It generates a new button which saves the current scroll bar position in the page, 

2.Top Button: It brings your back to the top of the page.

3.Move Button: It appears only when you hover your cursor over the Pagemarker. You can drag and drop the Pagemarker to anywhere in the window.

Note:

1.This extension doesn't support any web application which use it's own scroll bar, ex: pdf viewer, mail box, Google Drive...etc.

2.Reloading the page will reset the Pagemarker to default.                    

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

Tên Pagemarker Pagemarker
ID oheliokfcgehhjlhiiglekmbebigpbdj
URL Chính Thức https://chromewebstore.google.com/detail/pagemarker/oheliokfcgehhjlhiiglekmbebigpbdj
Mô tả A simple Chrome extension that allows you to save positions in a page for fast re-visit
Kích Thước Tệp 20.33 KB
Số Lần Cài Đặt 7,000
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2013-10-02
Ngày Phát Hành 2013-10-02
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển bravebeetle
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pagemarker",
    "description": "A simple Chrome extension that allows you to save positions in a page for fast re-visit",
    "version": "1.0.0",
    "icons": {
        "48": "Pagemarker48.png",
        "128": "Pagemarker128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*.pdf"
            ],
            "js": [
                "start.js",
                "draw.js",
                "mark.js",
                "marker.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "Pagemarker19_OFF.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "contentstyle.css"
    ]
}