Nothing to Hide

Important!! This requires extra software from: https://github.com/compsocial/nothing-to-hide Nothing to Hide is a Chrome extension…

Nothing to Hideคืออะไร?

Nothing to Hide เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Important!! This requires extra software from: https://github.com/compsocial/nothing-to-hide Nothing to Hide is a Chrome extension…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Nothing to Hide

ดาวน์โหลดไฟล์ส่วนขยาย Nothing to Hide ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Important!! This requires extra software from: https://github.com/compsocial/nothing-to-hide

Nothing to Hide is a Chrome extension for Gmail that makes your email messages vaguer. After you compose a message, this extension replaces any overly specific words and phrases with appropriate, but much vaguer alternatives. The intended recipient can (hopefully) still understand the transformed message but snoopers (hopefully) cannot. Part experiment, part art project, Nothing to Hide wants to let you communicate with people you already know while simultaneously hiding your text in the background noise of the internet. We see our primary adversary as widespread passive internet surveillance and user modeling. In other words, Nothing to Hide seeks to making mining and modeling difficult because some data were never written down.

This project is its very early stages of development. On rare occasions, it might tele-transport your computer to the event horizon. Also, due to its reliance on natural language processing toolkits, this version only supports the English language, sorry :(                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Nothing to Hide Nothing to Hide
ID keiegjchmoggjbpgfjdjghbiicpjneoe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nothing-to-hide/keiegjchmoggjbpgfjdjghbiicpjneoe
คำอธิบาย Important!! This requires extra software from: https://github.com/compsocial/nothing-to-hide Nothing to Hide is a Chrome extension…
ขนาดไฟล์ 140 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 3.0.1
อัปเดตครั้งล่าสุด 2014-03-04
วันที่เผยแพร่ 2014-03-04
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/climatewarrior/nothing-to-hide
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nothing to Hide",
    "version": "3.0.1",
    "permissions": [
        "tabs",
        "https:\/\/mail.google.com\/*",
        "http:\/\/127.0.0.1:5000\/"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "jquery-2.0.3.js",
                "dict.js",
                "run.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Vague-ify Options",
        "default_icon": "redact_16x16.png"
    },
    "web_accessible_resources": [
        "jquery-2.0.3.js",
        "dict.js",
        "run.js"
    ],
    "manifest_version": 2
}