Only HTML

Allow only HTML (and inline CSS & images) to render. Block all other content types like images, scripts, web fonts etc.

Only HTMLคืออะไร?

Only HTML เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://browsernative.com และคุณลักษณะหลักของมันคือ "Allow only HTML (and inline CSS & images) to render. Block all other content types like images, scripts, web fonts etc."

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

screenshot
screenshot

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

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

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

                        Click on extension's icon on the toolbar to activate or deactivate it. 

When activated, this extension loads only HTML content, inline styles, and inline images (SVG or Data URLs etc). It blocks other content types like JavaScript, images, videos, web fonts etc.

By blocking these resources, the extension can improve the loading speed of web pages and reduce the amount of data transferred over the network. Moreover, Developers could benefit from having a preview of the HTML-only version of their webpages.

Extension by BrowserNative. Visit our support page for more information and feedback.                    

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

ชื่อ Only HTML Only HTML
ID jdlecmkgdgeabgpjhbhdpkfcllgacdil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/only-html/jdlecmkgdgeabgpjhbhdpkfcllgacdil
คำอธิบาย Allow only HTML (and inline CSS & images) to render. Block all other content types like images, scripts, web fonts etc.
ขนาดไฟล์ 11.65 KB
จำนวนการติดตั้ง 88
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-04-25
วันที่เผยแพร่ 2023-04-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://browsernative.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://browsernative.com/only-html/
URL หน้าช่วยเหลือ https://browsernative.com/only-html/
URL หน้านโยบายความเป็นส่วนตัว https://browsernative.com/extensions-privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Only HTML",
    "description": "Allow only HTML (and inline CSS & images) to render. Block all other content types like images, scripts, web fonts etc.",
    "version": "1.0.1",
    "short_name": "Only HTML",
    "manifest_version": 3,
    "background": {
        "service_worker": "sw.js"
    },
    "icons": {
        "48": "static\/icon-48.png",
        "128": "static\/icon-128.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback",
        "contentSettings"
    ],
    "host_permissions": [
        ""
    ],
    "minimum_chrome_version": "101",
    "action": {
        "default_icon": {
            "48": "static\/icon-48.png",
            "128": "static\/icon-128.png"
        },
        "default_title": "Only HTML"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "enabled": false,
                "path": "rules.json"
            }
        ]
    },
    "homepage_url": "https:\/\/browsernative.com\/only-html\/"
}