Signed Pages

Verifies PGP signed pages for extra security against malicious or breached servers.

Signed Pagesとは何ですか?

Signed PagesはTenguによって開発されたChromeの拡張機能で、その主な機能は「Verifies PGP signed pages for extra security against malicious or breached servers.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Signed Pages拡張機能のCRXファイルをダウンロード

Signed Pages拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Signed Pages is a browser extension to verify the authenticity (PGP signature) of web pages.

# Why?

This extension was originally created to improve the security of the EteSync web app (https://www.etesync.com). One of the biggest issues with securing web applications is the fact that the app (JavaScript) is delivered to you every time you open the page. This means that a malicious (or compromised) web server could change the code to steal your supposedly client-side-only and secure data.

This extension solves this by verifying the code really came from the developer. While this doesn't protect you from a malicious developer, it at least brings the security of the web app to a similar level to that of native apps.

# Usage

All you need to do is install the extension, and from its settings page, add patterns to match pages you'd like to verify, and their corresponding publisher's public key. The developers of those websites must have their pages signed for this extension to work.

# Example pages

You can try the following example pages to see how the extension behaves:

Install the extension and add the pattern and pubkey shown in the page from the extension's settings.

* A page with a good signature: https://stosb.com/~tom/signed-pages/good.html
* A page with a bad signature: https://stosb.com/~tom/signed-pages/bad.html
* A page with a missing (but expected) signature: https://stosb.com/~tom/signed-pages/missing.html

# More info and source code:

https://github.com/tasn/webext-signed-pages

# Attribution

Icons are based on the folowing icons:

* Shield made by [Smashicons](https://www.flaticon.com/authors/smashicons) and licensed as [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/)
* Checked made by [Eleonor Wang](https://www.flaticon.com/authors/eleonor-wang) and licensed as [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/)
* Fingerprint made by [Google](https://www.flaticon.com/authors/google) and licensed as [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/)                    

拡張機能の基本情報

名前 Signed Pages Signed Pages
ID pdhofgeoopaglkejgpjojeikbdmkmkbp
公式URL https://chromewebstore.google.com/detail/signed-pages/pdhofgeoopaglkejgpjojeikbdmkmkbp
説明 Verifies PGP signed pages for extra security against malicious or breached servers.
ファイルサイズ 773 KB
インストール数 82
現在のバージョン 0.5.0
最終更新日 2020-11-30
公開日 2019-10-10
評価 5.00/5 合計 1 レビュー
開発者 Tengu
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/tasn/webext-signed-pages
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Signed Pages",
    "description": "Verifies PGP signed pages for extra security against malicious or breached servers.",
    "version": "0.5.0",
    "homepage_url": "https:\/\/github.com\/tasn\/webext-signed-pages",
    "icons": {
        "48": "images\/icon.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png"
    },
    "page_action": {
        "browser_style": true,
        "default_icon": {
            "48": "images\/icon.png"
        }
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "applications": {
        "gecko": {
            "strict_min_version": "57.0a1"
        }
    }
}