Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Pop out tabs to new window क्या है?
Pop out tabs to new window Ivan Novikov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Click the extension's toolbar button to pop out selected tab(s) to a new window."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pop out tabs to new window एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Default shortcut: Alt+P. Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs: — To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key. — To select a range of tabs, click tab handles while holding down the Shift key. Source code: https://github.com/ivan7237d/pop-out-tabs
एक्सटेंशन की मूल जानकारी
नाम | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
आधिकारिक URL | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
विवरण | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
फ़ाइल का आकार | 3.38 KB |
स्थापना संख्या | 248 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2018-03-14 |
प्रकाशन तिथि | 2018-03-14 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Ivan Novikov |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://twitter.com/ivan7237d |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pop out tabs to new window", "version": "1.1", "description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "offline_enabled": true, "browser_action": { "default_title": "Pop out tabs to new window" }, "commands": { "popout_action": { "suggested_key": { "default": "Alt+P" }, "description": "Pop out tabs to new window" } } } |