GCache Browser
Easily Browse Google cached webpages
GCache Browserคืออะไร?
GCache Browser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gokam.co.uk และคุณลักษณะหลักของมันคือ "Easily Browse Google cached webpages"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GCache Browser
ดาวน์โหลดไฟล์ส่วนขยาย GCache Browser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
One click and switch to Google cached webpages browsing. If your favorite website is temporarily offline, you can browse it as if nothing happened. This extension is very handy for SEO professionals too, as you can see what was a website state last time Googlebot checked. Why it's cool: It is possible to switch from one cache page to another by using the page links. demo : https://recordit.co/1iUdG8GX4d doesn't work on websites with 'nocache' meta data, single app and websites that check their hostname in JS
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GCache Browser |
ID | bdeeanokiffadihdmojahobnnenikmbn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gcache-browser/bdeeanokiffadihdmojahobnnenikmbn |
คำอธิบาย | Easily Browse Google cached webpages |
ขนาดไฟล์ | 9.77 KB |
จำนวนการติดตั้ง | 324 |
เวอร์ชันปัจจุบัน | 0.4 |
อัปเดตครั้งล่าสุด | 2019-09-30 |
วันที่เผยแพร่ | 2019-09-30 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://gokam.co.uk |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GCache Browser", "description": "Easily Browse Google cached webpages", "version": "0.4", "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/webcache.googleusercontent.com\/*" ], "js": [ "cache.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs" ] } |