Show Content Only

Show an element content without scroll

Show Content Onlyคืออะไร?

Show Content Only เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://qisops.com และคุณลักษณะหลักของมันคือ "Show an element content without scroll"

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

screenshot

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

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

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

                        This extension makes a specified part of web page to be easily viewed in a new tab or window without scrolling or zooming the whole web page.
If a web page's style sheet makes its content hard to read, you can right click on the content part and select the context menu's Show Content Only, the content will be showed in a new tab or window with the plain text.
Sometime if you want to print some content but the page is displayed as multiple columns format, you can use this function to show the primary content in a new page and print it. This can save your paper and makes it easily to be read.

If the new page does not include all your primary content, you can change the mouse pointer's position to a larger area and run this function again.                    

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

ชื่อ Show Content Only Show Content Only
ID bopicafkhkhaphihlgdcfmnbhpokjpcf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/show-content-only/bopicafkhkhaphihlgdcfmnbhpokjpcf
คำอธิบาย Show an element content without scroll
ขนาดไฟล์ 63.55 KB
จำนวนการติดตั้ง 121
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2020-04-11
วันที่เผยแพร่ 2020-04-11
ผู้พัฒนา https://qisops.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://qisops.com/?page_id=297
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Content Only",
    "description": "Show an element content without scroll",
    "version": "1.0.6",
    "author": "Shangwu",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "images\/i16.png",
        "48": "images\/i48.png",
        "128": "images\/i128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content.js"
            ]
        }
    ]
}