Show Content Only

Show an element content without scroll

Show Content Only란 무엇입니까?

Show Content Only은(는) https://qisops.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show an element content without scroll"입니다.

확장 프로그램 스크린샷

screenshot

Show Content Only 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}