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.”。
擴展截圖
下載Paste On Screen擴展crx文件
下載Paste On Screen擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | dhiihpekdgggkglfppkmjjmnaigmnjao |
官方網址 | 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" } } } } |