Youtube Time Keeper

Retain your point in videos even after browser crashes and restarts

Youtube Time Keeper là gì?

Youtube Time Keeper là một tiện ích mở rộng Chrome được phát triển bởi daffy1234, và tính năng chính của nó là "Retain your point in videos even after browser crashes and restarts".

Ả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 Youtube Time Keeper

Tải xuống các tệp mở rộng Youtube Time Keeper 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 extension to keep the current time of Youtube videos in the address bar.

Every second, the URL is updated to contain "t=[current time]". This makes videos resume where they left off in the event that chrome is closed accidentally, crashes, or a tab is suspended through another means such as with the extension "The Great Suspender".

Known issues:
  - Hourglass button looks broken in full screen mode

0.0.0.7:
  - Fixed an issue resulting in the tab icon blinking sometimes, or sometimes causing a memory leak.

0.0.0.6:
  - Minor changes
  - Icon and screenshot added

0.0.0.5:
  - Hourglass button turns red when timer is disabled
  - URL is updated to look like "t=3m21s" instead of "t=201" for times over a minute

0.0.0.4:
  - Fixed cases where the button may not show until after the page fully loads

0.0.0.3:
  - Added a button on youtube videos to disable the timer. Useful when sharing videos from the beginning.

0.0.0.2:
  - fixed a bug that spammed the right click menu of the back button                    

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

Tên Youtube Time Keeper Youtube Time Keeper
ID najpdcckclgkfilhecdmghhndhkcpoma
URL Chính Thức https://chromewebstore.google.com/detail/youtube-time-keeper/najpdcckclgkfilhecdmghhndhkcpoma
Mô tả Retain your point in videos even after browser crashes and restarts
Kích Thước Tệp 42.91 KB
Số Lần Cài Đặt 215
Phiên Bản Hiện Tại 0.0.0.7
Cập Nhật Lần Cuối 2016-01-22
Ngày Phát Hành 2016-01-22
Đánh Giá 3.62/5 Tổng số 13 Đánh Giá
Nhà Phát Triển daffy1234
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": "Youtube Time Keeper",
    "description": "Retain your point in videos even after browser crashes and restarts",
    "version": "0.0.0.7",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "loader.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "timer.js",
        "hourglass.png"
    ]
}