Youtube Time Marks

Reads Youtube description and creates video time marks.

Youtube Time Marks là gì?

Youtube Time Marks là một tiện ích mở rộng Chrome được phát triển bởi RepoGamesStudio, và tính năng chính của nó là "Reads Youtube description and creates video time marks.".

Ả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 Marks

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

                        Usable mostly to long youtube interviews
It reads description in the following format:

00:00:00 desc1
00:01:34 desc2
00:01:47 desc3
00:02:44 desc4
...

and creates time marks automatically.                    

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

Tên Youtube Time Marks Youtube Time Marks
ID pphlndhfdfilkemppecnknkefjoolibp
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp
Mô tả Reads Youtube description and creates video time marks.
Kích Thước Tệp 12.05 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2018-06-30
Ngày Phát Hành 2018-06-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển RepoGamesStudio
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.facebook.com/RepoGames/
URL Trang Trợ Giúp https://www.facebook.com/RepoGames/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Time Marks",
    "version": "0.0.3",
    "description": "Reads Youtube description and creates video time marks.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle",
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}