JoinTabs
Combines all Chrome tabs in separate windows into a single window
Vad är JoinTabs?
JoinTabs är en Chrome-tillägg utvecklad av rodrigo.siqueira, och dess huvudfunktion är "Combines all Chrome tabs in separate windows into a single window".
Tilläggsskärmbilder
Ladda ner JoinTabs-förlängningens CRX-fil
Ladda ner JoinTabs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Combines all Chrome tabs in separate windows into a single window. Click the magnet icon in your browser to join all tabs and opened windows and popups into a single main browser window. Version 1.4 Updated version - free with no ads and no banners. Some computers may have the "grey screen" issue (Chrome bug - Merge Tabs function broken) after joining tabs: http://code.google.com/p/chromium/issues/detail?id=53990
Grundläggande Information om Tillägg
Namn | JoinTabs |
ID | bjmimocndihpmdoelbiilpkkfkppikap |
Officiell webbadress | https://chromewebstore.google.com/detail/jointabs/bjmimocndihpmdoelbiilpkkfkppikap |
Beskrivning | Combines all Chrome tabs in separate windows into a single window |
Filstorlek | 28.08 KB |
Antal Installationer | 6,421 |
Aktuell Version | 1.4.15 |
Senast Uppdaterad | 2012-09-26 |
Publiceringsdatum | 2012-09-26 |
Betyg | 4.15/5 Totalt 46 Betyg |
Utvecklare | rodrigo.siqueira |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "iconjoin19.png", "default_title": "JoinTabs" }, "content_scripts": [ { "all_frames": true, "js": [ "shortcut.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ] } ], "description": "Combines all Chrome tabs in separate windows into a single window", "icons": { "128": "iconjoin128.png", "16": "iconjoin16.png", "48": "iconjoin48.png" }, "manifest_version": 2, "name": "JoinTabs", "options_page": "options.html", "permissions": [ "tabs" ], "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.4.15" } |