ScriptSnap

Reduce time spent on mundane tasks by assigning execution of any JavaScript code to keystrokes.

ScriptSnap란 무엇입니까?

ScriptSnap은(는) keleran에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reduce time spent on mundane tasks by assigning execution of any JavaScript code to keystrokes."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

ScriptSnap 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        With this extension you can execute any JavaScript code by pressing a few buttons on your keyboard. Those JS snippets can be arranged into groups with unlimited nesting, and there is a nice UI to navigate through. Convinient editor and jQuery-like syntax for your code are another cool features.

It would be easier to understand how these JS shortcuts works, if you just install extension, take a look at it's settings and try out default config.

Quick start: install, then open any page (http://example.com is a good one) and press "E", "O", "Enter" on your keyboard.

Please note: it will not work on any special pages, like new blank page, extensions list, etc., and Chrome Webstore - it's a browser restriction.

Permission to read your data on all websites needed solely for inserting keypress listener.

This extension has an open source code, it can be found at https://github.com/dchekanov/scriptsnap.

Suggested usage:

1. Bookmarks: simple (just static URL), smart (URL dependent on current URL and/or page content), parameterized (URL with parameters values taken from user input), mixed (parameterized with extra logic).
2. Page content and look modification: transform page in any way you may need to simplify your job.
3. Small helping scripts, like calculations based on predefined formulas with variables dependent on page properties and user input.
4. Server interaction via AJAX.

Details on how it works:

Keystroke may be a sequence of any english letters and numbers 0-9. Each step in that sequence can have a JS code binded (optionally with field for user input) or serve as a container.

There is an UI to aid orienting in available keystrokes. It will be shown at left top corner. Keystokes will be represented in a nested lists, with each element consisting of title and corresponding key. Ones having code binded to them will have an ↳ symbol. If there is an input field, there will be an ↦ symbol, as well as some tip for what you are expected to type in. Branches will expand dynamically as you press keys. Current keystoke will be highlighted. Binded code can be executed and input be passed by pressing Enter.                    

확장 프로그램 기본 정보

이름 ScriptSnap ScriptSnap
ID mcbohdalkkoclbhddnpnjbknlcmjkcep
공식 URL https://chromewebstore.google.com/detail/scriptsnap/mcbohdalkkoclbhddnpnjbknlcmjkcep
설명 Reduce time spent on mundane tasks by assigning execution of any JavaScript code to keystrokes.
파일 크기 103 KB
설치 횟수 22
현재 버전 1.4.2
최근 업데이트 2013-04-07
출시 날짜 2013-04-07
평점 5.00/5 총 1 개의 평점
개발자 keleran
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Reduce time spent on mundane tasks by assigning execution of any JavaScript code to keystrokes.",
    "background": {
        "scripts": [
            "background\/js\/background.js"
        ]
    },
    "name": "ScriptSnap",
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "options\/options.html",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/js\/zepto.js",
                "content\/js\/content-script.js"
            ],
            "css": [
                "content\/css\/ui.css"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "1.4.2"
}