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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a changeable keyboard shortcut that pastes the clipboard into the URL bar and loads it/searches for it."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Paste and Go Key एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } } } |