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 |
| 公式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 |
| Eメール | [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"
}
}
}
} | |