Show Content Only

Show an element content without scroll

Show Content Only là gì?

Show Content Only là một tiện ích mở rộng Chrome được phát triển bởi https://qisops.com, và tính năng chính của nó là "Show an element content without scroll".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Show Content Only

Tải xuống các tệp mở rộng Show Content Only dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Show Content Only Show Content Only
ID bopicafkhkhaphihlgdcfmnbhpokjpcf
URL Chính Thức https://chromewebstore.google.com/detail/show-content-only/bopicafkhkhaphihlgdcfmnbhpokjpcf
Mô tả Show an element content without scroll
Kích Thước Tệp 63.55 KB
Số Lần Cài Đặt 121
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2020-04-11
Ngày Phát Hành 2020-04-11
Nhà Phát Triển https://qisops.com
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://qisops.com/?page_id=297
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}