Veep

Keep your videos playback positions in sync across all of your devices and browser restarts.

Veep là gì?

Veep là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Keep your videos playback positions in sync across all of your devices and browser 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 Veep

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

                        Veep allows you to watch Youtube videos from where you let them even if you closed the tab, restarted your browser or even used another computer.

In order to synchronize playback positions across all of your devices, you need to be logged into Chrome with the same account and have the sync enabled in the browser settings on every devices.                    

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

Tên Veep Veep
ID floamojfedahogohlnlakmehjnjbnhkj
URL Chính Thức https://chromewebstore.google.com/detail/veep/floamojfedahogohlnlakmehjnjbnhkj
Mô tả Keep your videos playback positions in sync across all of your devices and browser restarts.
Kích Thước Tệp 23.13 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2016-02-05
Ngày Phát Hành 2016-02-05
Nhà Phát Triển Unknown
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/cGuille/veep
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Veep",
    "description": "Keep your videos playback positions in sync across all of your devices and browser restarts.",
    "version": "1.1.0",
    "icons": {
        "16": "img\/veep-16.png",
        "48": "img\/veep-48.png",
        "128": "img\/veep-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "src\/youtube-storage.js",
                "src\/url-params.js",
                "src\/youtube.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "src\/youtube-storage.js",
            "src\/youtube-cleanup.js",
            "src\/videos-count.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/veep-19.png",
            "38": "img\/veep-38.png"
        },
        "default_popup": "src\/last-videos.html",
        "default_title": "Veep"
    },
    "permissions": [
        "storage"
    ]
}