Reveal
Context menu extension to view auto completed hidden password.
什麼是Reveal?
Reveal是由Shiv開發的Chrome擴展程式,該擴展的主要功能是“Context menu extension to view auto completed hidden password.”。
擴展截圖
下載Reveal擴展crx文件
下載Reveal擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
How many times have you forgotten the password saved by google passwords and have to manually logout or request for a new one without knowing how to view the hidden password? Reveal will help you make the hidden password visible. Simply right click on the password input field and chose 'Reveal password'.
擴展基本資訊
名稱 | Reveal |
ID | coickbnhchmdngjabciaimhdhnbgnpef |
官方網址 | https://chromewebstore.google.com/detail/reveal/coickbnhchmdngjabciaimhdhnbgnpef |
簡介 | Context menu extension to view auto completed hidden password. |
檔案大小 | 182 KB |
安裝次數 | 7,788 |
目前版本 | 1.0 |
更新時間 | 2020-03-03 |
上架時間 | 2020-02-29 |
評分 | 4.40/5 共 5 次評分 |
開發者 | Shiv |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reveal", "description": "Context menu extension to view auto completed hidden password.", "version": "1.0", "author": "Shivkanthb", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "images\/eyecon-16x16.png", "48": "images\/eyecon-48x48.png", "72": "images\/eyecon-72x72.png", "128": "images\/eyecon-128x128.png" }, "background": { "scripts": [ "scripts\/event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/content_script.js" ] } ] } |