Auto redirect timer
Redirect pages after x seconds
ما هو Auto redirect timer؟
Auto redirect timer هو إضافة Chrome تم تطويرها بواسطة matheus.cs007، والميزة الرئيسية لها هي "Redirect pages after x seconds".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Auto redirect timer
قم بتنزيل ملفات الامتداد Auto redirect timer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } |