Website Cached View

Find cached web pages from Google web cache, the Wayback Machine, and live Version.

Website Cached Viewคืออะไร?

Website Cached View เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://websitecached.com และคุณลักษณะหลักของมันคือ "Find cached web pages from Google web cache, the Wayback Machine, and live Version."

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

screenshot
screenshot

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

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

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

                        Find cached web pages from Google web cache, the Wayback Machine, and live Version.  Right-click on any link or page to view the Wayback Machine or Google Cached pages.
Web Cache Viewer lets you right-click on any link or page to view the Wayback Machine or Google Cache versions of that page.                    

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

ชื่อ Website Cached View Website Cached View
ID jcbpeilhbmhdlnakgmdnhnallgciiefm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/website-cached-view/jcbpeilhbmhdlnakgmdnhnallgciiefm
คำอธิบาย Find cached web pages from Google web cache, the Wayback Machine, and live Version.
ขนาดไฟล์ 16.4 KB
จำนวนการติดตั้ง 282
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-05-27
วันที่เผยแพร่ 2021-04-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา http://websitecached.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://websitecached.com
URL หน้าช่วยเหลือ https://websitecached.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Cached View",
    "description": "Find cached web pages from Google web cache, the Wayback Machine, and live Version.",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "contextMenus"
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/icon_16.png",
            "32": "\/images\/icon_32.png",
            "48": "\/images\/icon_48.png",
            "128": "\/images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "\/images\/icon_16.png",
        "32": "\/images\/icon_32.png",
        "48": "\/images\/icon_48.png",
        "128": "\/images\/icon_128.png"
    }
}