WebCache

Want to view a cached website? With WebCache it takes 1 click to view the Google Cache, Wayback Machine, Archive.is, or Coral CDN!

WebCacheคืออะไร?

WebCache เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dbz และคุณลักษณะหลักของมันคือ "Want to view a cached website? With WebCache it takes 1 click to view the Google Cache, Wayback Machine, Archive.is, or Coral CDN!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebCache

ดาวน์โหลดไฟล์ส่วนขยาย WebCache ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a chrome browser extension that allows the user to view a cached version of the current webpage. Set your primary cache as Google Cache, Wayback Machine, Archive.is, or Coral CDN. If what you're looking for isn't found, it'll cycle through the other caches until it finds what you're looking for. There are three ways to use WebCache:

1. Click the extension button to view the cached version of the web page

2. Access the cached webpage through the right click menu (enable this setting in the options page)

3. Auto-detect when a webpage is down, and fetch the cached version (enable this setting in the options page)

Source code is available here: https://github.com/Dbz/WebCache

PLEASE REPORT ISSUES/FEATURE REQUESTS HERE: https://github.com/Dbz/WebCache/issues


Change Log:

V 4.1.0
--------

 - Wayback Machine URL now takes you directly to the latest snapshot of a page
 - Added Archive.is as to the caches
 - Code Refactoring

V 4.0.0
--------

 - Added right click menu option to view the cached version of a web page
 - Re-wrote the HTML/CSS of the options page
 - Refactoring of the code base


V 3.5.6
---------

 - Fixed a bug where first time installers couldn't use the extension before visiting the options page


Google Cache, Wayback Machine, Coral CDN, cache                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ WebCache WebCache
ID cmmlgikpahieigpcclckfmhnchdlfnjd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webcache/cmmlgikpahieigpcclckfmhnchdlfnjd
คำอธิบาย Want to view a cached website? With WebCache it takes 1 click to view the Google Cache, Wayback Machine, Archive.is, or Coral CDN!
ขนาดไฟล์ 13.76 MB
จำนวนการติดตั้ง 14,471
เวอร์ชันปัจจุบัน 4.1.1
อัปเดตครั้งล่าสุด 2017-09-14
วันที่เผยแพร่ 2017-09-14
คะแนน 3.63/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา Dbz
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Dbz/WebCache
URL หน้านโยบายความเป็นส่วนตัว https://github.com/Dbz/WebCache/blob/master/PrivacyPolicy.md
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebCache",
    "short_name": "WebCache",
    "version": "4.1.1",
    "description": "Want to view a cached website? With WebCache it takes 1 click to view the Google Cache, Wayback Machine, Archive.is, or Coral CDN!",
    "browser_action": {
        "default_title": "WebCache"
    },
    "icons": {
        "48": "\/images\/icon-48.png",
        "19": "\/images\/icon-19.png",
        "16": "\/images\/icon-16.png"
    },
    "background": {
        "scripts": [
            "context-menu.js",
            "redirect.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "contextMenus"
    ]
}