Paste and Go Key
Adds a changeable keyboard shortcut that pastes the clipboard into the URL bar and loads it/searches for it.
Paste and Go Key란 무엇입니까?
Paste and Go Key은(는) AQmx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a changeable keyboard shortcut that pastes the clipboard into the URL bar and loads it/searches for it."입니다.
확장 프로그램 스크린샷
Paste and Go Key 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds a keyboard shortcut to paste the clipboard into the URL bar of the current tab or a new tab and loads it if it is a URL or otherwise searches for it. The search function is disabled by default and the search engine that is used can be changed in the settings. Notes: - The keyboard shortcut can be changed through the "Keyboard shortcuts" tab in the browser's Extensions page. - If the search URL is left blank then searches will be done using the browser's default search engine. Translation credits: - Chinese Simplified - Jiong Guo (JEANX58) - Italian - Elena Giannoni (ellieG) - Portuguese - Rodrigo Leye (rleye) - Swedish - Ben Skoglund (Mjuke)
확장 프로그램 기본 정보
이름 | Paste and Go Key |
ID | maalehmgoojdjbooodmgcbehchengpje |
공식 URL | https://chromewebstore.google.com/detail/paste-and-go-key/maalehmgoojdjbooodmgcbehchengpje |
설명 | Adds a changeable keyboard shortcut that pastes the clipboard into the URL bar and loads it/searches for it. |
파일 크기 | 34.92 KB |
설치 횟수 | 10,000 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2024-02-05 |
출시 날짜 | 2021-04-14 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | AQmx |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://aqmx.github.io/pagk.html |
지원되는 언어 | en,it,pt-BR,pt-PT,bg,ru,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paste and Go Key", "manifest_version": 2, "version": "1.2.3", "browser_specific_settings": { "gecko": { "id": "@pasteandgokey" } }, "default_locale": "en", "description": "Adds a changeable keyboard shortcut that pastes the clipboard into the URL bar and loads it\/searches for it.", "author": "AQmx", "icons": { "48": "icons\/48.png" }, "background": { "scripts": [ "index.js" ] }, "browser_action": { "default_title": "Paste and Go", "default_icon": { "16": "icons\/16.png", "32": "icons\/32.png", "64": "icons\/64.png", "128": "icons\/128.png", "256": "icons\/256.png" } }, "options_ui": { "page": "options.html" }, "permissions": [ "clipboardRead", "search", "storage", "tabs" ], "commands": { "_execute_browser_action": { "description": "__MSG_shortcutTitle__", "suggested_key": { "default": "Ctrl+Shift+V" } } } } |