tabswitcher
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
tabswitcher क्या है?
tabswitcher https://jhchabran.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में tabswitcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension settings. Suggestion: use alt-space.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | gkdkligmcadfbagoeggeohelmgalchcn |
आधिकारिक URL | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
विवरण | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
फ़ाइल का आकार | 375 KB |
स्थापना संख्या | 22 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2015-09-29 |
प्रकाशन तिथि | 2015-09-29 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | https://jhchabran.com |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
सहायता पृष्ठ URL | https://github.com/jhchabran/tabswitcher |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "tabswitcher", "version": "1.0.2", "browser_action": { "default_title": "Show the popup", "default_popup": "popup.html", "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "permissions": [ "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "tabswitcher.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "tabswitcher.js", "background.js" ], "persistent": false }, "manifest_version": 2 } |