Paste Long Text
A chrome extension to paste your long text in just single click.
What is Paste Long Text?
Paste Long Text is a Chrome extension developed by Rajendra Arora, and its main feature is "A chrome extension to paste your long text in just single click.".
Extension Screenshots
Download Paste Long Text Extension CRX File
Download Paste Long Text extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Paste your long text in just one click.
Extension Basic Information
Name | Paste Long Text |
ID | dhonighchmchkhghhmnegegkciogailm |
Official URL | https://chromewebstore.google.com/detail/paste-long-text/dhonighchmchkhghhmnegegkciogailm |
Description | A chrome extension to paste your long text in just single click. |
File Size | 609 KB |
Installation Count | 82 |
Current Version | 1.2 |
Last Updated | 2017-11-03 |
Publish Date | 2017-11-02 |
Rating | 4.50/5 Total 4 Ratings |
Developer | Rajendra Arora |
[email protected] | |
Payment Type | free |
Extension Website | https://www.rajendraarora.com |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Paste Long Text", "description": "A chrome extension to paste your long text in just single click.", "version": "1.2", "browser_action": { "default_icon": "assets\/icons\/48x48.png", "default_popup": "index.html", "default_title": "Paste Long Text" }, "background": { "scripts": [ "assets\/js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "assets\/js\/jquery.js", "assets\/js\/content.js" ] } ], "permissions": [ "contextMenus" ], "icons": { "16": "assets\/icons\/16x16.png", "48": "assets\/icons\/48x48.png", "128": "assets\/icons\/128x128.png" } } |