Enable Copy Paste - E.C.P

Enable copy paste on websites that have disabled copy paste.

Τι είναι το Enable Copy Paste - E.C.P;

Το Enable Copy Paste - E.C.P είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kodemuse.dev, και η κύρια λειτουργία του είναι "Enable copy paste on websites that have disabled copy paste.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Enable Copy Paste - E.C.P

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

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

                        How to use:

- Click on the extension icon
- After a popup is opened, use the “Enable copy paste for all websites” checkbox.
- Manually refresh the page and see if the extension has successfully enabled copy paste functionality on the website.
- Use "Aggressive Mode" if default mode does not enable copy paste on websites.

This extension may not work for websites that use extremely sophisticated methods for disabling copy paste functionality.

Privacy notice: 
This software neither collects nor transmits any personally identifiable information. This software does not track your browsing behaviour. Information necessary for functioning of this software is stored on the devices of the end user, our servers do not have access to this information.                    

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

Όνομα Enable Copy Paste - E.C.P Enable Copy Paste - E.C.P
ID fpjppnhnpnknbenelmbnidjbolhandnf
Επίσημο URL https://chromewebstore.google.com/detail/enable-copy-paste-ecp/fpjppnhnpnknbenelmbnidjbolhandnf
Περιγραφή Enable copy paste on websites that have disabled copy paste.
Μέγεθος Αρχείου 92.99 KB
Αριθμός Εγκαταστάσεων 161,181
Τρέχουσα Έκδοση 2.0.0.1
Τελευταία Ενημέρωση 2023-05-24
Ημερομηνία Δημοσίευσης 2021-01-19
Αξιολόγηση 3.92/5 Συνολικά 60 Αξιολογήσεις
Προγραμματιστής https://kodemuse.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.kodemuse.dev/enable-copy-paste/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.kodemuse.dev/enable-copy-paste/
URL της Σελίδας Πολιτικής Απορρήτου https://www.kodemuse.dev/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable Copy Paste - E.C.P",
    "description": "Enable copy paste on websites that have disabled copy paste.",
    "short_name": "E.C.P",
    "manifest_version": 3,
    "version": "2.0.0.1",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/www.kodemuse.dev\/enable-copy-paste\/",
    "background": {
        "service_worker": "\/background\/background_sw.js"
    },
    "action": {
        "default_title": "Enable Copy Paste - E.C.P",
        "default_popup": "\/popup\/popup.html"
    },
    "icons": {
        "16": "\/icon\/16.png",
        "24": "\/icon\/24.png",
        "32": "\/icon\/32.png",
        "48": "\/icon\/48.png",
        "64": "\/icon\/64.png",
        "128": "\/icon\/128.png",
        "256": "\/icon\/256.png",
        "512": "\/icon\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/content_script\/enable_copy.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/content_script_web_accessible\/ecp_aggressive.js",
                "\/content_script_web_accessible\/ecp_regular.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}