Auto redirect timer

Redirect pages after x seconds

Auto redirect timer là gì?

Auto redirect timer là một tiện ích mở rộng Chrome được phát triển bởi matheus.cs007, và tính năng chính của nó là "Redirect pages after x seconds".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto redirect timer

Tải xuống các tệp mở rộng Auto redirect timer 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 extension redirects a tab of chrome to pages of your choice after x seconds.
why would you need this?
Maybe to show multiple market charts on TV, follow multiple news websites, etc.                    

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

Tên Auto redirect timer Auto redirect timer
ID gnobhhnegbnhjljeaolmlnhjjmmncldg
URL Chính Thức https://chromewebstore.google.com/detail/auto-redirect-timer/gnobhhnegbnhjljeaolmlnhjjmmncldg
Mô tả Redirect pages after x seconds
Kích Thước Tệp 1.83 MB
Số Lần Cài Đặt 93
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-09-02
Ngày Phát Hành 2021-09-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển matheus.cs007
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto redirect timer",
    "manifest_version": 3,
    "version": "1.0.1",
    "description": "Redirect pages after x seconds",
    "permissions": [
        "activeTab",
        "scripting",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": ".\/images\/icon-16x16.png",
        "32": ".\/images\/icon-32x32.png",
        "48": ".\/images\/icon-48x48.png",
        "128": ".\/images\/icon-128x128.png"
    },
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "service_worker": "background.js",
        "persistence": false
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}