ProKeys

Save time and effort in emails, etc. with ProKeys! Define snippets, do math in browser, auto complete braces, and much more.

¿Qué es ProKeys?

ProKeys es una extensión de Chrome desarrollada por Aquila Softworks, y su función principal es "Save time and effort in emails, etc. with ProKeys! Define snippets, do math in browser, auto complete braces, and much more.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ProKeys

Descarga archivos de extensión ProKeys en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Never waste a second on repetitive typing and the tedium of copy-paste again. Impress your boss and colleagues with a spike in your productivity!

This user-friendly text expander lets you save largish text expansions and associate them with short abbreviations. We support plain or styled text, local and sync browser storage, clipboard macros, date and time macros, dynamic value fields in expansions, dynamic math, omnibox support, and much more!

Your words-per-minute will skyrocket, your colleagues will swoon at your productivity, online drudgery of the corporate world won't touch you, and you'll never bother with the Herculean task of right-click, copy, go-somewhere-else, right-click...

For more info, visit the Help section inside the app, or watch the promo video on this page.

⋆Snippets⋆ - expand abbreviations
Define custom abbreviations, and expand them by simply pressing the hotkey (default: Shift+Space). It can be even a full-length email to your customer! Example: "brb" can expand to "Be right back!" Think of these as "canned responses".

⋆Placeholders⋆ - fields (inside snippets) which can be given dynamic values on using the snippet. Example: snippet "wishBday", which you can use to wish your friends Happy Birthday! Since the name of the friend keeps changing, so you can add a placeholder in the snippet body, as "%name%" (without quotes). It'll be auto-highlighted whenever you use the snippet and you can type your friend's name into it.

⋆Mathomania⋆ - do math without leaving your text editor, and without calculators. Simply type the math expression inside the `[[` and `]]` and press `=` to get the results. (watch the promo video for details) Parentheses and exponentiation is also supported.
Example: "[[ 15% * 600 =]]" gives "90" and "[[ (5+6) * 15^2 =]]" gives "2475".

⋆Omnibox support⋆ - use the keyword "pk" to directly expand snippets inside of the omnibox/address bar.

⋆Clipboard access⋆ - use [[%p]] anywhere in your snippet body, it is auto-replaced with the current clipboard data.

⋆Date/Time Macros⋆ - embed short symbols (inside a snippet body) which are auto-replaced their current date and time. Multiple date and time formats are supported.

⋆Date/Time Arithmetic⋆ - can be used to move forward or backward in time in the date and time macros. Supports both relative and independent evaluation of the symbols. 

⋆Variables⋆ - quickly type date, time, browser version without having to leave your text editor or look at the clock!

⋆Auto-Insert⋆ - Quotes ('"') and braces - ( { [ -are auto-completed, and you can specify your custom insert-it-for-me symbols as well (like, inserting a '>' on typing of a '<') in the settings.

⋆Tab Key⋆ - can be used to insert 4 spaces, instead of its default function, thus speeding up your work.

Notes:
- All your data is stored on your PC (or synced across your Chrome sign-ins) and nothing is sent to any external servers! Check the source code if you wish to - https://github.com/GaurangTandon/ProKeys
- You can disable ProKeys for particular websites in the Settings.
- You can take a backup of your data, restore it, and print it as well.
- You are sure of not losing your data as ProKeys stores (on your PC) past 20 revisions of your data.
- You can switch between Sync and Local storage.

Note that the following few web apps are known to be incompatible:
1. Facebook (only comments and profile posts)/Messenger/Quora - uses improper text editor.
2. Google Docs - as it is a full-fledged editor itself. (But Google Docs comments section works)

Contact me at [email protected] if you know of a dynamic web app that's missing from the list above, or to give feedback.

Also note that the input of type email and number do not support caret manipulation so ProKeys can't function there (and neither does it work in password fields, for obvious reasons).

ProKeys developed with ♥ by - Gaurang Tandon and Varun Singh                    

Información Básica de la Extensión

Nombre ProKeys ProKeys
ID ekfnbpgmmeahnnlpjibofkobpdkifapn
URL Oficial https://chromewebstore.google.com/detail/prokeys/ekfnbpgmmeahnnlpjibofkobpdkifapn
Descripción Save time and effort in emails, etc. with ProKeys! Define snippets, do math in browser, auto complete braces, and much more.
Tamaño del Archivo 291 KB
Cantidad de Instalaciones 70,000
Versión Actual 3.6.2
Última Actualización 2021-08-25
Fecha de Publicación 2019-06-30
Calificación 4.39/5 Total de 221 Calificaciones
Desarrollador Aquila Softworks
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/GaurangTandon/ProKeys
URL de la Página de Ayuda https://github.com/GaurangTandon/ProKeys/issues/new
URL de la Página de Política de Privacidad https://github.com/GaurangTandon/ProKeys/blob/master/PRIVACY_POLICY.md
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ProKeys",
    "description": "Save time and effort in emails, etc. with ProKeys! Define snippets, do math in browser, auto complete braces, and much more.",
    "version": "3.6.2",
    "author": "Aquila Softworks",
    "browser_action": {
        "default_icon": "imgs\/r16.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "js\/detector.js"
            ],
            "css": [
                "css\/blockSiteModal.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "notifications",
        "",
        "contextMenus",
        "clipboardRead"
    ],
    "omnibox": {
        "keyword": "pk"
    },
    "icons": {
        "16": "imgs\/r16.png",
        "48": "imgs\/r48.png",
        "128": "imgs\/r128.png"
    },
    "options_page": "html\/options.html",
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "offline_enabled": true,
    "content_security_policy": "default-src 'none'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; frame-src 'self'"
}