Reveal
Context menu extension to view auto completed hidden password.
Vad är Reveal?
Reveal är en Chrome-tillägg utvecklad av Shiv, och dess huvudfunktion är "Context menu extension to view auto completed hidden password.".
Tilläggsskärmbilder
Ladda ner Reveal-förlängningens CRX-fil
Ladda ner Reveal-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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'.
Grundläggande Information om Tillägg
Namn | Reveal |
ID | coickbnhchmdngjabciaimhdhnbgnpef |
Officiell webbadress | https://chromewebstore.google.com/detail/reveal/coickbnhchmdngjabciaimhdhnbgnpef |
Beskrivning | Context menu extension to view auto completed hidden password. |
Filstorlek | 182 KB |
Antal Installationer | 7,788 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2020-03-03 |
Publiceringsdatum | 2020-02-29 |
Betyg | 4.40/5 Totalt 5 Betyg |
Utvecklare | Shiv |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |