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文件
下載Paste and Go Key擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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) 擴展基本資訊
| 名稱 | |
| ID | maalehmgoojdjbooodmgcbehchengpje |
| 官方網址 | 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"
}
}
}
} | |