Doublespeak

Hides/reveals secret messages in text. Optimized for instant messaging.

O que é Doublespeak?

Doublespeak é uma extensão do Chrome desenvolvida por https://dblspk.io, e sua principal característica é "Hides/reveals secret messages in text. Optimized for instant messaging.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Doublespeak

Baixe arquivos de extensão Doublespeak no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Messages are encoded as zero-width Unicode characters, as a casual form of steganography.

Encryption coming soon.

【Usage】

• Tab / Shift+Tab — cycle through fields
• Drag and drop files onto popup to encode
• To identify yourself in your messages, open the hamburger menu and prepend/append your name

When auto mode is enabled, this extension automatically parses the HTML in your current tab for secret messages. This feature requires the permission "Read and change all your data on the websites you visit". If you do not trust this extension, you can manually decode using the web app at http://dblspk.io/

【What can be hidden】

• Text
• URLs (similar use to QR codes)
• Watermarks
• Small files

【Possible places for storage】

• Chat messages
• Social media posts
• User profile information
• Forums
• HTML
• Emails
• Digital documents
• File names (very short messages only)

【How does it work?】

Unicode contains some zero-width, unprintable characters. We use 16 of them to encode any data in hexadecimal, using our arbitrary encoding scheme.

The resulting string of invisible characters is then inserted at a random location in the cover text.

Source is available at https://github.com/dblspk/extension                    

Informações Básicas da Extensão

Nome Doublespeak Doublespeak
ID mochgllkkbafaoombocojfenmkbijhdb
URL Oficial https://chromewebstore.google.com/detail/doublespeak/mochgllkkbafaoombocojfenmkbijhdb
Descrição Hides/reveals secret messages in text. Optimized for instant messaging.
Tamanho do Arquivo 32.18 KB
Contagem de Instalações 55
Versão Atual 2017.9.2
Última Atualização 2017-09-08
Data de Publicação 2017-09-08
Desenvolvedor https://dblspk.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://dblspk.io/
URL da Página de Ajuda https://github.com/dblspk/extension/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Doublespeak",
    "description": "Hides\/reveals secret messages in text. Optimized for instant messaging.",
    "version": "2017.9.2",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/doublespeak.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/icon-128.png",
        "default_popup": "popup.html"
    },
    "offline_enabled": true,
    "permissions": [
        "storage"
    ]
}