Lazy Chrome
Toggle pin tab, duplicate tab, mute tab and more in your custom keyboard shortcuts
Lazy Chrome क्या है?
Lazy Chrome netburst द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Toggle pin tab, duplicate tab, mute tab and more in your custom keyboard shortcuts"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Lazy Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Do the support actions below in a simple default shortcut or your custom keyboard shortcut
***config your shortcuts on chrome://extensions/shortcuts
pin tab: alt + 1
duplicate tab: alt + 3
open copied URL in a new tab: ctrl + shift + v
search for copied text in a new tab: ctrl + shift + q
search for selected text in a new tab
make a tab be independent
open notepad in Chrome
mute current tab
mute other tabs
prevent window close(You can confirm again whether to close the window): ctrl + n
only keep the same domain tabs
close the same domain tabs
close tabs from the same domain other than current tab
go back to the previous tab(toggle 2 most recently used tabs (MRU))
copy the URL of the current tab
unique tabs(remove duplicated tabs)
copy the title and URL of the current tab एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | boijmdgjfcoancndoiclnglhjakeopch |
| आधिकारिक URL | https://chromewebstore.google.com/detail/lazy-chrome/boijmdgjfcoancndoiclnglhjakeopch |
| विवरण | Toggle pin tab, duplicate tab, mute tab and more in your custom keyboard shortcuts |
| फ़ाइल का आकार | 85.15 KB |
| स्थापना संख्या | 169 |
| वर्तमान संस्करण | 0.3.5 |
| अंतिम अपडेट | 2023-10-09 |
| प्रकाशन तिथि | 2019-10-20 |
| रेटिंग | 4.43/5 कुल 7 रेटिंग्स |
| डेवलपर | netburst |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| सहायता पृष्ठ URL | https://github.com/frog1014/lazy_chrome |
| समर्थित भाषाएँ | en,zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Lazy Chrome",
"short_name": "Mouse Terminator",
"version": "0.3.5",
"default_locale": "en",
"description": "__MSG_appDesc__",
"permissions": [
"tabs",
"activeTab",
"clipboardWrite",
"clipboardRead",
"scripting",
"notifications",
"offscreen",
"storage"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"commands": {
"toggle-pin": {
"suggested_key": {
"default": "Alt+1"
},
"description": "__MSG_togglePin__"
},
"duplicate": {
"suggested_key": {
"default": "Alt+3"
},
"description": "__MSG_duplicate__"
},
"newTabWithUrl": {
"suggested_key": {
"default": "Ctrl+Shift+V"
},
"description": "__MSG_newTabWithUrl__"
},
"openNotepad": {
"description": "__MSG_openNotepad__"
},
"keepSameDomain": {
"description": "__MSG_keepSameDomain__"
},
"killSameDomain": {
"description": "__MSG_killSameDomain__"
},
"killOtherSameDomain": {
"description": "__MSG_killOtherSameDomain__"
},
"newQueryWithSelected": {
"description": "__MSG_newQueryWithSelected__"
},
"independent": {
"description": "__MSG_independent__"
},
"copyUrl": {
"description": "__MSG_copyUrl__"
},
"copyTitleAndUrl": {
"description": "__MSG_copyTitleAndUrl__"
},
"uniqueTabs": {
"description": "__MSG_uniqueTabs__"
},
"toggle-mute": {
"description": "__MSG_toggleMute__"
},
"toShutUp": {
"description": "__MSG_toShutUp__"
},
"previousTabInSameWindow": {
"description": "__MSG_previousTabInSameWindow__"
},
"newQueryWithPasted": {
"suggested_key": {
"default": "Ctrl+Shift+Q"
},
"description": "__MSG_newQueryWithPasted__"
}
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/lazy_chrome16.png",
"32": "images\/lazy_chrome32.png",
"48": "images\/lazy_chrome48.png",
"128": "images\/lazy_chrome128.png"
}
},
"icons": {
"16": "images\/lazy_chrome16.png",
"32": "images\/lazy_chrome32.png",
"48": "images\/lazy_chrome48.png",
"128": "images\/lazy_chrome128.png"
},
"manifest_version": 3
} | |