Save Rendered HTML

A Chrome extension that saves the fully rendered HTML of the current tab.

Save Rendered HTMLคืออะไร?

Save Rendered HTML เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Teddy และคุณลักษณะหลักของมันคือ "A Chrome extension that saves the fully rendered HTML of the current tab."

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

screenshot
screenshot
screenshot

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

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

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

                        Save Rendered HTML Chrome Extension
===================================

This Chrome extension allows you to save the fully rendered HTML of the current tab by clicking a button in the extension's popup.

Features
--------

*   Save the fully rendered HTML of the current tab as a file
*   Automatically generates a timestamped file name for the saved HTML



Usage
-----

1.  Visit a web page in Google Chrome.
2.  Click the extension's icon to open the popup.
3.  Click the "Save HTML" button to download the fully rendered HTML of the current tab as a file.

The file will be named `rendered_html_.html`, where `` is the current date and time in ISO 8601 format.                    

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

ชื่อ Save Rendered HTML Save Rendered HTML
ID pdlopbmgodpapaoeiagfcdcgdhmdpgpk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/save-rendered-html/pdlopbmgodpapaoeiagfcdcgdhmdpgpk
คำอธิบาย A Chrome extension that saves the fully rendered HTML of the current tab.
ขนาดไฟล์ 164 KB
จำนวนการติดตั้ง 70
เวอร์ชันปัจจุบัน 1.1.7
อัปเดตครั้งล่าสุด 2023-11-10
วันที่เผยแพร่ 2023-11-10
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Teddy
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tddschn/save-rendered-html-extension
URL หน้าช่วยเหลือ https://github.com/tddschn/save-rendered-html-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Save Rendered HTML",
    "version": "1.1.7",
    "description": "A Chrome extension that saves the fully rendered HTML of the current tab.",
    "permissions": [
        "activeTab",
        "downloads",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon48.png"
        }
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}