Doublespeak

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

Doublespeak क्या है?

Doublespeak https://dblspk.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides/reveals secret messages in text. Optimized for instant messaging."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Doublespeak एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Doublespeak Doublespeak
ID mochgllkkbafaoombocojfenmkbijhdb
आधिकारिक URL https://chromewebstore.google.com/detail/doublespeak/mochgllkkbafaoombocojfenmkbijhdb
विवरण Hides/reveals secret messages in text. Optimized for instant messaging.
फ़ाइल का आकार 32.18 KB
स्थापना संख्या 55
वर्तमान संस्करण 2017.9.2
अंतिम अपडेट 2017-09-08
प्रकाशन तिथि 2017-09-08
डेवलपर https://dblspk.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://dblspk.io/
सहायता पृष्ठ URL https://github.com/dblspk/extension/issues
समर्थित भाषाएँ 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"
    ]
}