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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AQmx และคุณลักษณะหลักของมันคือ "Adds a changeable keyboard shortcut that pastes the clipboard into the URL bar and loads it/searches for it."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Paste and Go Key

ดาวน์โหลดไฟล์ส่วนขยาย 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)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Paste and Go Key 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"
            }
        }
    }
}