Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Glimpse: Toggle Password with Shortcut Keys",
"version": "2.0.0",
"manifest_version": 3,
"description": "Show \/ hide password fields easily with shortcut keys or context menu",
"author": "Walter Teng",
"homepage_url": "https:\/\/github.com\/davzoku",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"contextMenus",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"commands": {
"commandTogglePasswords": {
"suggested_key": {
"default": "Alt+P"
},
"description": "Show \/ Hide Passwords"
}
}
}