Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
ما هو Simple Auto Refresh؟
Simple Auto Refresh هو إضافة Chrome تم تطويرها بواسطة tobias.samesch، والميزة الرئيسية لها هي "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Simple Auto Refresh
قم بتنزيل ملفات الامتداد Simple Auto Refresh بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.
معلومات أساسية عن التمديد
الاسم | Simple Auto Refresh |
ID | jghdcjbendekbeopdlofjcnogeeemjgd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
الوصف | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
حجم الملف | 10.36 KB |
عدد التثبيتات | 18 |
النسخة الحالية | 1.0.3 |
آخر تحديث | 2021-02-18 |
تاريخ النشر | 2021-01-09 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | tobias.samesch |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Auto Refresh", "version": "1.0.3", "description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval", "permissions": [ "declarativeContent", "storage", "alarms", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_page": "options.html", "page_action": { "default_popup": "popup.html", "default_icon": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" } }, "icons": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" }, "manifest_version": 2 } |