Paste Enforcer
It will type the contents of your Clipboard so you can paste text in websites that block it
Qu'est-ce que Paste Enforcer ?
Paste Enforcer est une extension Chrome développée par Unknown, et sa fonction principale est "It will type the contents of your Clipboard so you can paste text in websites that block it".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Paste Enforcer
Téléchargez les fichiers d'extension Paste Enforcer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
It will type the contents of your Clipboard so you can paste text in websites that block it. Just right click the field and select: "Force paste!"
Informations de Base sur l'Extension
Nom | Paste Enforcer |
ID | klioagabdlbmbhomedhkfkjggelmfclg |
URL Officiel | https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg |
Description | It will type the contents of your Clipboard so you can paste text in websites that block it |
Taille du Fichier | 64.39 KB |
Nombre d'Installations | 1,677 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2018-12-12 |
Date de Publication | 2018-12-06 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paste Enforcer", "version": "1.1", "description": "It will type the contents of your Clipboard so you can paste text in websites that block it", "permissions": [ "contextMenus", "activeTab", "clipboardRead" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor\/jquery.js", "vendor\/bililiteRange.js", "vendor\/jquery.sendkeys.js", "content-script.js" ], "all_frames": true } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |