Paste Enforcer
It will type the contents of your Clipboard so you can paste text in websites that block it
Hvad er Paste Enforcer?
Paste Enforcer er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "It will type the contents of your Clipboard so you can paste text in websites that block it".
Udvidelsesskærmbilleder
Download Paste Enforcer-udvidelses-CRX-fil
Download Paste Enforcer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!" Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | klioagabdlbmbhomedhkfkjggelmfclg |
| Officiel URL | https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg |
| Beskrivelse | It will type the contents of your Clipboard so you can paste text in websites that block it |
| Filstørrelse | 64.39 KB |
| Antal Installationer | 1,677 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2018-12-12 |
| Udgivelsesdato | 2018-12-06 |
| Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
| Udvikler | Unknown |
| Betalingsmetode | free |
| Understøttede Sprog | 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
} | |