Powerlet
Quickly find and run your bookmarklets.
Powerlet란 무엇입니까?
Powerlet은(는) https://anthonycossins.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly find and run your bookmarklets."입니다.
확장 프로그램 스크린샷
Powerlet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Powerlet gives you quick keyboard access to your bookmarklets. Features: - Search for JS scripts found in your bookmarks - Add, edit and remove bookmarklets - Keyboard navigation - Supports dark mode, the icon and theme will update automatically - Translated to English and Japanese How to use: - Press CMD + SHIFT + K on Mac or CTRL + SHIFT + K on Windows to show Powerlet - Start typing to filter out bookmarklet scripts and press enter to run them on the current page
확장 프로그램 기본 정보
이름 | Powerlet |
ID | ofecodkcadbenmiknnidnfepbblapgkn |
공식 URL | https://chromewebstore.google.com/detail/powerlet/ofecodkcadbenmiknnidnfepbblapgkn |
설명 | Quickly find and run your bookmarklets. |
파일 크기 | 105 KB |
설치 횟수 | 567 |
현재 버전 | 1.5.1 |
최근 업데이트 | 2023-05-25 |
출시 날짜 | 2020-04-03 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | https://anthonycossins.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://github.com/anthonyec/powerlet |
도움말 페이지 URL | https://github.com/anthonyec/powerlet/issues |
개인정보 보호 정책 페이지 URL | https://github.com/anthonyec/powerlet/blob/master/docs/privacy.md |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Powerlet", "version": "1.5.1", "description": "Quickly find and run your bookmarklets.", "permissions": [ "activeTab", "bookmarks" ], "default_locale": "en", "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "19": "default_icon.png", "38": "[email protected]" } }, "icons": { "36": "extension_icon_36.png", "128": "extension_icon_128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+K", "mac": "Command+Shift+K", "chromeos": "Ctrl+Shift+K", "linux": "Ctrl+Shift+K" } } } } |