Auto refresh
Automatically refresh the specified page, or only refresh the inactive TAB page.
Auto refreshคืออะไร?
Auto refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย idof และคุณลักษณะหลักของมันคือ "Automatically refresh the specified page, or only refresh the inactive TAB page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto refresh
ดาวน์โหลดไฟล์ส่วนขยาย Auto refresh ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Automatically refresh the specified page, or only refresh the inactive TAB page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | mljjfcmhgefdfgeomcaocgijloggnnjk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk |
คำอธิบาย | Automatically refresh the specified page, or only refresh the inactive TAB page. |
ขนาดไฟล์ | 74.91 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-11-15 |
วันที่เผยแพร่ | 2014-11-15 |
คะแนน | 4.27/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | idof |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "background": { "page": "background.html", "script": "background.js" }, "content_scripts": [ { "all_frames": false, "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "128": "img\/on128.png", "64": "img\/on64.png" }, "manifest_version": 2, "name": "__MSG_extName__", "page_action": { "default_icon": "img\/off.png", "default_popup": "popup.html", "default_title": "__MSG_extName__" }, "permissions": [ "tabs", "browsingData", "webRequest", "webNavigation", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0" } |