Paste On Screen

Show contents of the clipboard in a popup with large font.

Paste On Screen란 무엇입니까?

Paste On Screen은(는) David M. Chandler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show contents of the clipboard in a popup with large font."입니다.

확장 프로그램 스크린샷

screenshot

Paste On Screen 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        v1.03 Now splits links at / to allow even larger display

v1.02: Press Ctrl+Shift+V or Cmd+Shift+V (Mac) to instantly show your clipboard.

Ideal for showing short links during a class or presentation. There are many extensions like the bit.ly extension to create a short URL with just one click and copy it to the clipboard. Then click this extension to show the clipboard. Automatically removes http/s prefix from URLs in order to save space since Chrome extension popups are limited to 800x600 pixels (and using the full screen would require the extension for more permissions).

Special thanks to https://stackoverflow.com/users/1793477/sudarshan for his thorough example code on using the clipboard in Chrome extensions as well as communicating between the popup and background windows. Icon made by Freepik from www.flaticon.com. Licensed CC 3.0 BY.

See web site link below for the open source project.

By the way, drfib.me is a Bitly branded short domain, which works with the bit.ly extension using a free account. Good stuff!                    

확장 프로그램 기본 정보

이름 Paste On Screen Paste On Screen
ID dhiihpekdgggkglfppkmjjmnaigmnjao
공식 URL https://chromewebstore.google.com/detail/paste-on-screen/dhiihpekdgggkglfppkmjjmnaigmnjao
설명 Show contents of the clipboard in a popup with large font.
파일 크기 135 KB
설치 횟수 3,544
현재 버전 1.03
최근 업데이트 2018-09-04
출시 날짜 2018-09-04
평점 5.00/5 총 2 개의 평점
개발자 David M. Chandler
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/turbomanage/chromepaste
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Paste On Screen",
    "version": "1.03",
    "manifest_version": 2,
    "description": "Show contents of the clipboard in a popup with large font.",
    "permissions": [
        "clipboardRead",
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_title": "Paste On Screen",
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "clip32.png",
        "64": "clip64.png",
        "128": "clip128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+V",
                "mac": "Command+Shift+V",
                "chromeos": "Ctrl+Shift+V",
                "linux": "Ctrl+Shift+V"
            }
        }
    }
}