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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |