Last Scroll

Shows position after scrolling (by line ↡, or by page ⇓) for better reading continuity.

Last Scroll là gì?

Last Scroll là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Shows position after scrolling (by line ↡, or by page ⇓) for better reading continuity.".

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

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

                        When scrolling web pages it is often difficult to find the last
previously visible line to keep on reading.

This is most apparent when a scroll has less than a full page to go at the top or bottom of a document.

*Last Scroll* provides a visual hint where to keep on reading, and how we got here.

Click the visual hint to toggle its visibility.                    

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

Tên Last Scroll Last Scroll
ID mceojjfcjklcpbdkagkjhoinaagcidnd
URL Chính Thức https://chromewebstore.google.com/detail/last-scroll/mceojjfcjklcpbdkagkjhoinaagcidnd
Mô tả Shows position after scrolling (by line ↡, or by page ⇓) for better reading continuity.
Kích Thước Tệp 22.34 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 10
Cập Nhật Lần Cuối 2013-11-30
Ngày Phát Hành 2013-11-30
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/anaran/LastScrollChrome
URL Trang Trợ Giúp https://github.com/anaran/LastScrollChrome/issues
Ngôn Ngữ Được Hỗ Trợ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "version": "10",
    "minimum_chrome_version": "29.0.1521.3",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "48": "lastscroll4_48x48.png",
        "128": "lastscroll4_128x128.png"
    },
    "web_accessible_resources": [
        "lastscroll4_48x48.png",
        "lastscroll4_128x128.png"
    ],
    "permissions": [],
    "background": {
        "scripts": [
            "last_scroll_event_page.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "last_scroll.js"
            ]
        }
    ]
}