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."입니다.
확장 프로그램 스크린샷
Signed Pages 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 |
이메일 | [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": [ " |