IDE Powers

Write text like you would in an IDE

IDE Powers란 무엇입니까?

IDE Powers은(는) krister.viirsaar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Write text like you would in an IDE"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Get automatically ([{matching brackets}]) and "quotes" just like it works in Sublime Text or Atom.

There are a few extra hotkeys too:

- Cut line
- Delete line
- New line
- New line above

(on Mac ctrl is the command key)

There are definitely still kinks to work out so make sure you report bugs :)

CHANGELOG

v0.7.4
- Fix: Don't match quotes at the end of the word

v0.7.3
- Fix: Change Hotkeys button now works

v0.7.1
- Fix: Feature requests are now tracked on reddit

v0.7
- New: Move row up and down (only works for simple editors currently).
- Changed: Hotkeys can be changed in extension settings.
- Changed: Popup is more clean.
- Fix: `Ctrl+ X` with selection works as expected.
- Fix: Triple backtick (```) can be written faster as third backtick isn't matched.

v0.6.5
- Fixed facebook input crash

v0.6

- Disabled websites will be reported so they can be fixed
- Reporting can be disabled
- Made preparations for a Firefox port
- Mac CMD key should now work like CTRL does.
- Facebook closing bracket no longer messes up word ending                    

확장 프로그램 기본 정보

이름 IDE Powers IDE Powers
ID oomjhgmiccmmoodinfgbldmhndepijoi
공식 URL https://chromewebstore.google.com/detail/ide-powers/oomjhgmiccmmoodinfgbldmhndepijoi
설명 Write text like you would in an IDE
파일 크기 23.16 KB
설치 횟수 63
현재 버전 0.7.4
최근 업데이트 2018-10-30
출시 날짜 2018-10-29
평점 5.00/5 총 3 개의 평점
개발자 krister.viirsaar
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IDE Powers",
    "description": "Write text like you would in an IDE",
    "version": "0.7.4",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/icon16.png",
            "48": "img\/icon48.png"
        },
        "default_title": "IDE Power"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "42.0"
        }
    },
    "background": {
        "scripts": [
            "browser.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser.js",
                "lib\/helpers.js",
                "doubleLetters.js",
                "main.js",
                "hotkeys.js"
            ]
        },
        {
            "matches": [
                "*:\/\/medium.com\/*"
            ],
            "js": [
                "domainSettings\/mediumcom.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.messenger.com\/*"
            ],
            "js": [
                "domainSettings\/facebookcom.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.jsfiddle.net\/*"
            ],
            "js": [
                "domainSettings\/disabled.js"
            ]
        }
    ],
    "commands": {
        "new-line-above": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "Insert blank line above."
        },
        "new-line-below": {
            "suggested_key": {
                "default": "Ctrl+Down"
            },
            "description": "Insert blank line below."
        },
        "cut-line": {
            "suggested_key": {
                "default": "Ctrl+X"
            },
            "description": "Cut line (delete and keep in clipboard)."
        },
        "delete-line": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Delete line (just remove it)."
        },
        "move-line-up": {
            "description": "Move line up. (beta & buggy)"
        },
        "move-line-down": {
            "description": "Move line down. (beta & buggy)"
        }
    }
}