Paste Enforcer
It will type the contents of your Clipboard so you can paste text in websites that block it
Vad är Paste Enforcer?
Paste Enforcer är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "It will type the contents of your Clipboard so you can paste text in websites that block it".
Tilläggsskärmbilder
Ladda ner Paste Enforcer-förlängningens CRX-fil
Ladda ner Paste Enforcer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Paste Enforcer |
ID | klioagabdlbmbhomedhkfkjggelmfclg |
Officiell webbadress | https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg |
Beskrivning | It will type the contents of your Clipboard so you can paste text in websites that block it |
Filstorlek | 64.39 KB |
Antal Installationer | 1,677 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2018-12-12 |
Publiceringsdatum | 2018-12-06 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Unknown |
Betalningssätt | free |
Stödda Språk | 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 } |