Auto redirect timer

Redirect pages after x seconds

Auto redirect timer क्या है?

Auto redirect timer matheus.cs007 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirect pages after x seconds"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Auto redirect timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Auto redirect timer Auto redirect timer
ID gnobhhnegbnhjljeaolmlnhjjmmncldg
आधिकारिक URL https://chromewebstore.google.com/detail/auto-redirect-timer/gnobhhnegbnhjljeaolmlnhjjmmncldg
विवरण Redirect pages after x seconds
फ़ाइल का आकार 1.83 MB
स्थापना संख्या 93
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2021-09-02
प्रकाशन तिथि 2021-09-01
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर matheus.cs007
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}