Cypher text

Cypher any text on web page.

Co to jest Cypher text?

Cypher text to rozszerzenie Chrome opracowane przez Ievgenii Vdovenko, a jego główną funkcją jest „Cypher any text on web page.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Cypher text

Pobierz pliki rozszerzeń Cypher text 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 plugin allow you to cypher text on client side. This extension uses AES cypher by pass phrase. 

To encrypt text:
1. Select text.
2. Next - invoke context menu.
3. Select сypher from context menu, and select encrypt text.
4. Enter passphrase - changes immediately will be shown on client site.

To decrypt text follow same steps, but choose decrypt text from menu.                    

Podstawowe informacje o rozszerzeniu

Nazwa Cypher text Cypher text
ID aaiojlbngmjigjncaghednmoglaopmnm
Oficjalny URL https://chrome.google.com/webstore/detail/cypher-text/aaiojlbngmjigjncaghednmoglaopmnm
Opis Cypher any text on web page.
Rozmiar pliku 135 KB
Liczba instalacji 97
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2015-08-10
Data Publikacji 2015-08-10
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Ievgenii Vdovenko
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cypher text",
    "version": "1.0.0",
    "description": "Cypher any text on web page.",
    "icons": {
        "16": "ico\/icon-bitty.png",
        "64": "ico\/icon-medium.png",
        "128": "ico\/icon-large.png"
    },
    "background": {
        "scripts": [
            "js\/constants.js",
            "js\/passphraseResolver.js",
            "lib\/rc4.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/constants.js",
                "js\/save_last_element.js",
                "js\/contentMain.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "background",
        "contextMenus",
        "tabs"
    ]
}