Paste On Screen

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

Paste On Screen क्या है?

Paste On Screen David M. Chandler द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show contents of the clipboard in a popup with large font."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Paste On Screen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            }
        }
    }
}