Scroll Bookmarker

Save your place on a web page to view again later

Scroll Bookmarker là gì?

Scroll Bookmarker là một tiện ích mở rộng Chrome được phát triển bởi Owen, và tính năng chính của nó là "Save your place on a web page to view again later".

Ả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 Scroll Bookmarker

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

                        This chrome extension allows you to save your scroll position on any given website and access that position again at a later date. You may have multiple scroll positions saved on any one web page at a time. The extension allows you to create these scroll markers, cycle through them, and delete them.                    

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

Tên Scroll Bookmarker Scroll Bookmarker
ID plnmmjpilknfapheonmhlapbfkkcaeko
URL Chính Thức https://chromewebstore.google.com/detail/scroll-bookmarker/plnmmjpilknfapheonmhlapbfkkcaeko
Mô tả Save your place on a web page to view again later
Kích Thước Tệp 1.18 MB
Số Lần Cài Đặt 487
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-04-08
Ngày Phát Hành 2018-04-08
Đánh Giá 3.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Owen
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": "Scroll Bookmarker",
    "description": "Save your place on a web page to view again later",
    "version": "1.0.0",
    "offline_enabled": true,
    "browser_action": {
        "default_popup": ".\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                ".\/js\/content.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}