Bookmarklet IDE
An IDE used for creating / managing bookmarklets
Bookmarklet IDE란 무엇입니까?
Bookmarklet IDE은(는) https://ddavison.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An IDE used for creating / managing bookmarklets"입니다.
확장 프로그램 스크린샷
Bookmarklet IDE 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Create and manage your bookmarklets with ease. Find a bookmarklet online? Add it to the IDE easily by right clicking the snippet and adding it to the IDE. The IDE uses a bookmarklet folder in your Chrome bookmarks, so you still have full control. The bookmarklet IDE is also themeable.
확장 프로그램 기본 정보
이름 | Bookmarklet IDE |
ID | peebnjhlifoemfpcffdlbcdppmikglek |
공식 URL | https://chromewebstore.google.com/detail/bookmarklet-ide/peebnjhlifoemfpcffdlbcdppmikglek |
설명 | An IDE used for creating / managing bookmarklets |
파일 크기 | 852 KB |
설치 횟수 | 384 |
현재 버전 | 1.4.1 |
최근 업데이트 | 2022-04-06 |
출시 날짜 | 2019-03-08 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | https://ddavison.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ddavison/chrome-bookmarklet-ide |
도움말 페이지 URL | https://github.com/ddavison/chrome-bookmarklet-ide/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmarklet IDE", "short_name": "IDE for Bookmarklets", "description": "An IDE used for creating \/ managing bookmarklets", "author": "ddavison", "homepage_url": "https:\/\/github.com\/ddavison\/chrome-bookmarklet-ide", "version": "1.4.1", "manifest_version": 2, "browser_action": { "default_title": "Bookmarklet IDE", "default_popup": "popup.html", "default_icon": { "512": "assets\/images\/ide-logo-512.png", "128": "assets\/images\/ide-logo-128.png", "48": "assets\/images\/ide-logo-32.png", "24": "assets\/images\/ide-logo-24.png", "16": "assets\/images\/ide-logo-16.png" } }, "background": { "scripts": [ "assets\/js\/constant.js" ] }, "options_ui": { "chrome_style": true, "page": "options.html" }, "offline_enabled": true, "permissions": [ "bookmarks", "storage", "contextMenus" ], "icons": { "512": "assets\/images\/ide-logo-512.png", "128": "assets\/images\/ide-logo-128.png", "48": "assets\/images\/ide-logo-32.png", "24": "assets\/images\/ide-logo-24.png", "16": "assets\/images\/ide-logo-16.png" } } |