Re-enable Copy

Removes copy disablers from certain pages; gives the information's control back to the user.

Co to jest Re-enable Copy?

Re-enable Copy to rozszerzenie Chrome opracowane przez tacla.yamada, a jego główną funkcją jest „Removes copy disablers from certain pages; gives the information's control back to the user.”.

Pobierz plik CRX rozszerzenia Re-enable Copy

Pobierz pliki rozszerzeń Re-enable Copy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This disables copy spies which try to prevent users from copy and pasting content from a web page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Re-enable Copy Re-enable Copy
ID kpojaicmdgpmoemkdlbnmokolafjmcbn
Oficjalny URL https://chrome.google.com/webstore/detail/re-enable-copy/kpojaicmdgpmoemkdlbnmokolafjmcbn
Opis Removes copy disablers from certain pages; gives the information's control back to the user.
Rozmiar pliku 17.25 KB
Liczba instalacji 56
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2014-07-03
Data Publikacji 2014-07-03
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper tacla.yamada
Typ Płatności free
Strona Rozszerzenia https://github.com/yamadapc/re-enable-copy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Re-enable Copy",
    "description": "Removes copy disablers from certain pages; gives the information's control back to the user.",
    "version": "0.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.folha.uol.com.br\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ]
}