Force Paster

This extension allows you to paste text into input fields in websites that have disabled pasting.

¿Qué es Force Paster?

Force Paster es una extensión de Chrome desarrollada por https://www.pratyushvashisht.com, y su función principal es "This extension allows you to paste text into input fields in websites that have disabled pasting.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Force Paster

Descarga archivos de extensión Force Paster en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Force Paster is an advanced Chrome extension designed to enhance your online text input experience. Have you ever been frustrated by websites that disable pasting into input fields? Force Paster is your solution. This intelligent extension empowers you to paste text seamlessly in input fields and text areas, breaking through restrictions set by websites.

Key Features:

- Effortless Pasting: Force Paster allows you to paste text smoothly in input fields and text areas, bypassing typical restrictions effortlessly.
- Intuitive Toggle: Toggle the extension on or off with a single click. The badge icon clearly indicates whether the extension is active, ensuring you're always in control of your text input.
- Enhanced Dark Mode Support: Force Paster adapts to your preferred theme, providing a consistent experience whether you're in light or dark mode.
- Privacy First: Rest easy knowing your privacy is paramount. Force Paster guarantees a secure pasting experience with absolutely no data collected or shared. The source code for the extension is public at https://github.com/prvashisht/force-paster/


How to Use:

- Enable the Extension: Click the extension icon in your toolbar to activate Force Paster. The badge icon changes, indicating that the extension is active.
- Seamless Text Input: Paste text in any input field or text area without worrying about restrictions imposed by websites.
- Adaptive Theme Support: Force Paster seamlessly integrates with your theme preferences, providing a cohesive experience across different modes.
- Disable When Not Needed: Toggle off the extension when you no longer require its functionality. The badge icon updates to show that the extension is inactive.

Feedback and suggestions are welcome at https://github.com/prvashisht/force-paster/issues

Logs:
2.1.0 - Added some fixes and better data logging
2.0.2 - Detailed debug data is added to local storage
2.0.1 - Debug data is filled automatically in the uninstall survey for your review
2.0.0 - Changed to Manifest V3, changed icon and added support for dark and light mode
1.0.2 - Added a survey to collect feedback on uninstalls
1.0.1 - Removed the unused 'tabs' permission from manifest.json
1.0.0 - Removed the big green/red button n toggle enabling from the icon
0.0.1 - Enable or disable force paste on a page                    

Información Básica de la Extensión

Nombre Force Paster Force Paster
ID bdnpdmmgbnaahbeeoickafhpcidhgdhc
URL Oficial https://chromewebstore.google.com/detail/force-paster/bdnpdmmgbnaahbeeoickafhpcidhgdhc
Descripción This extension allows you to paste text into input fields in websites that have disabled pasting.
Tamaño del Archivo 51.22 KB
Cantidad de Instalaciones 2,291
Versión Actual 2.1.0
Última Actualización 2024-01-10
Fecha de Publicación 2017-08-15
Calificación 3.91/5 Total de 11 Calificaciones
Desarrollador https://www.pratyushvashisht.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/prvashisht/force-paster
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Force Paster",
    "version": "2.1.0",
    "description": "This extension allows you to paste text into input fields in websites that have disabled pasting.",
    "icons": {
        "16": "icons\/light\/icon16.png",
        "32": "icons\/light\/icon32.png",
        "48": "icons\/light\/icon48.png",
        "128": "icons\/light\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "storage",
        "clipboardRead"
    ],
    "host_permissions": [
        ""
    ],
    "author": "Pratyush Vashisht",
    "action": {
        "default_icon": {
            "16": "icons\/light\/icon16.png",
            "32": "icons\/light\/icon32.png",
            "48": "icons\/light\/icon48.png",
            "128": "icons\/light\/icon128.png"
        },
        "default_title": "Force the paste"
    },
    "content_security_policy": []
}