Paste Enforcer

It will type the contents of your Clipboard so you can paste text in websites that block it

Τι είναι το Paste Enforcer;

Το Paste Enforcer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "It will type the contents of your Clipboard so you can paste text in websites that block it".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Paste Enforcer

Λήψη αρχείων επέκτασης Paste Enforcer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!"                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Paste Enforcer Paste Enforcer
ID klioagabdlbmbhomedhkfkjggelmfclg
Επίσημο URL https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg
Περιγραφή It will type the contents of your Clipboard so you can paste text in websites that block it
Μέγεθος Αρχείου 64.39 KB
Αριθμός Εγκαταστάσεων 1,677
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2018-12-12
Ημερομηνία Δημοσίευσης 2018-12-06
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
}