ProKeys

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

什麼是ProKeys?

ProKeys是由Aquila Softworks開發的Chrome擴展程式,該擴展的主要功能是“Save time and effort in emails, etc. with ProKeys! Define snippets, do math in browser, auto complete braces, and much more.”。

擴展截圖

screenshot
screenshot
screenshot

下載ProKeys擴展crx文件

下載ProKeys擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 ProKeys ProKeys
ID ekfnbpgmmeahnnlpjibofkobpdkifapn
官方網址 https://chromewebstore.google.com/detail/prokeys/ekfnbpgmmeahnnlpjibofkobpdkifapn
簡介 Save time and effort in emails, etc. with ProKeys! Define snippets, do math in browser, auto complete braces, and much more.
檔案大小 291 KB
安裝次數 70,000
目前版本 3.6.2
更新時間 2021-08-25
上架時間 2019-06-30
評分 4.39/5 共 221 次評分
開發者 Aquila Softworks
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/GaurangTandon/ProKeys
說明頁面URL https://github.com/GaurangTandon/ProKeys/issues/new
隱私政策頁面URL https://github.com/GaurangTandon/ProKeys/blob/master/PRIVACY_POLICY.md
支援的語言 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'"
}