Giter Club home page Giter Club logo

quick-tabs-chrome-extension's Introduction

Version Rating Users

INTRODUCTION

Quick Tabs is a tab management browser extension for the Google Chrome web browser based on the "Recent Files" quick selector built into the excellent IntelliJ IDEA by Jetbrains.

Quick Tabs allows you to move quickly between recently used tabs without requiring the use of your mouse, locate and switch to tabs as you need them with minimal keystrokes even when you have large numbers of open tabs.

Visit the Quick Tabs google extensions page to install and try it out ...

FEATURES

  • Lists all the open tabs in Chrome across all of your open windows
  • Tabs are listed in most recently used (MRU) order and excludes the current tab (since you're switching tabs)
  • Fuzzy search your bookmarks:
    • Bookmarks are automatically searched when only a few tabs match your search string
    • Add a space at the start or end of your search string to search bookmarks along with tabs
    • Start your search with /b or add two spaces at the start or end of your search string to search only bookmarks
    • delete bookmarks directly from the search results by clicking the 'x'
  • Fuzzy search your browser history:
    • Start your search with /h or add three spaces at the start or end of your search string to search browser history
  • Find noisy tabs by searching for <))
  • Chrome keyboard shortcuts (configured using the keyboard shortcuts dialog at the bottom of the Chrome Extensions page):
    • Shortcut key to launch popup window from most tabs (default ctrl+e, cmd+e on Mac, ctrl+q on Linux).
    • Select previous tab without loading the popup window (unmapped by default)
    • Select next tab without loading the popup window (unmapped by default)
    • IMPORTANT the 'next tab' shortcut is only available for a second or so (while the badge text is orange) before the current tab is moved to the top of the MRU list.
    • Duplicate the current tab without (unmapped by default)
  • Tab list popup shortcut keys:
    • Select previous tab (same as Chrome keyboard shortcut or up arrow)
    • Select next tab (same as Chrome keyboard shortcut or down arrow)
    • Switch to selected Item (enter)
    • Duplicate the selected item and switch to it (same as Chrome keyboard shortcut, unmapped by default)
    • To close selected tab (default ctrl+d, see extension options)
  • Displays the number of tabs you currently have open in all your Chrome windows
  • Quickly search and select tabs by typing letters in the page title or url
  • Track recently closed tabs and allow them to be searched and restored
  • Popup customization using css

COMMANDS

Commands start with a / and can be typed in the popup window search box to tweak the search behaviour or perform actions on tabs;

Query Commands

  • /b <query> - search bookmarks
  • /h <query> - search browser history
  • /w <query> - search the tabs in the current window only
  • /p <query> - search pinned tabs only
  • /g <query> - search tabs that belong to the same tab group as the current tab (or no tab group if it's not in a group)

Search Types

You can now change the search type for a single search, this can help if you have a specific search string in engine combo in mind.

  • /fuzzy <query> - use the fuzzy search engine for this query only
  • /fuse <query> - use the fuse search engine for this query only
  • /regex <query> - use the regex search engine for this query only
  • /subs <query> - use the subs search engine for this query only

Tab Management

Tab management commands all accept RegExp search queries.

  • /close <query> - search for and close tabs
  • /merge <query> - merge tabs into the current window
  • /split <query> - split tabs and move them into a new window
  • /reload <query> - reload all the tabs in the search result
  • /mute <query> - mute the tabs in the search result
  • /unmute <query> - unmute the tabs in the search result
  • /group <query> - create new tab groups or move tabs into groups using the search results

PERMISSIONS

Quick Tabs requires the following:

  • Read and change your browsing history: read only access is required to record your open tabs and search browser history.
  • Read and change your bookmarks: read/write access is required to search, display and remove (by clicking the 'x' in the results list) bookmarks.

SCREENSHOTS

Quick Tabs ready for action.

Popup Screenshot

Tab and bookmark search.

Search Screenshot

History search.

Search History

Search your browser history by starting your search with '/h ' or adding 3 spaces to the end of your search query.

Decide what to show.

Search History

Custom CSS styling.

Search Screenshot

In this case https://userstyles.org/styles/99938/better-styling-for-chrome-extension-quick-tabs by @Bunnyslippers. See the ./3rdParty/css directory.

SOURCE

The source code for this extension is available on github, please feel free to inspect it before you install this extension, especially as I am asking permission to interact with your computer and its private data.

You can also install it manually if you want to be certain that the source code on github is directly what you install. Note, this will NOT automatically update the extension when bugs are fixed and features are added.

In your terminal, cd to the folder you want to clone it to, and run git clone https://github.com/babyman/quick-tabs-chrome-extension. Then in Google Chrome, click Window - Extensions, click the checkbox called "Developer Mode", and click the "Load unpacked extension" button. Navigate to the cloned project, and select the "quick-tabs" folder. You now have the plugin loaded as a developer. Again, this will NOT automatically update the extension when bugs are fixed and features are added.

FEEDBACK AND BUGS

Please report all your valuable feedback, feature requests and bug reports on the github issues page for this extension.

AND FINALLY

If you find Quick Tabs useful and want to buy me a coffee, I really like coffee :D ...

ko-fi

RELEASE NOTES

2021.6.29 - merged PR #349, support deleting bookmarks from the results list, thanks @shihshen. PR #351, assign a window specific class to result list items, thanks @kjelly.

2021.6.16 - merged PR #344, added support to order tabs by URL, thanks @armstrongli. PR #347 added new native chrome css, thanks @piyush1104.

2021.3.21 - merged PR #341, Tab order update delay of 0 ms is not respected, thanks @legate. Fix an issue loading saved shortcut keys and set the badge background color to red when debug == true, fix a 10-year-old Yellow Argon Web Store keyword violation because Quick Tabs has nothing to do with search or tab

VIOLATION!

2021.1.31 - merged PR #333, option to enter custom debounce delay value, thanks @goran-zdjelar, add duplicate tab keyboard shortcut, add 2 new group commands /g to search current tabs group only and /group to create groups and move tabs into groups

2020.9.8 - merged pull request #330, fix for issue that some undefined elements, thanks @jaekyeom (refs #326).

2020.6.30 - upgrade jQuery (fixes #318)

2020.6.3 - fix bug #315 adding spaces to search bookmarks and histories no longer working

2020.5.31 - merge pull request #314 to fix undefined tabs, thanks @NicoWeio (refs #251, #310, #275, #313). Added back the space prefix to search bookmarks and history, fixes #311, support searching pinned tabs only /p , fixes #290

2020.3.10 - combined the code that handles the no tabs match keyboard and empty tab list triggers to behave more consistently, fixes #302

2020.1.26 - bug fix, "Can't switch to "discarded" tabs" fixes #300

2020.1.25 - merge pull request #211, "add option to order tabs in window order" thanks @gregsadetsky and request #301, "Fix command key combination issue in popup" thanks @powpowshen also switch search type used by commands from substr to regexp, see #299.

2020.1.18 - bug fix, "when no tabs match" stopped working, fixes #298

2020.1.13 - call .stopPropagation() in click event handlers, refs #295, add debouncing to improve the responsiveness of the UI when entering queries, refs #297

2020.1.8 - refined tab moving options, see 'Only move tabs when switched via the extension popup', fixes #296

2020.1.5 - add support to keep window tabs in MRU order with the 'Move tab to leftmost position on switch' option see #174

2019.12.29 - Quick Tabs turns 10!, added new commands '/close', '/merge', '/mute', '/unmute', '/split' and '/reload', '/w' to search tabs in the current window only, also allow specifying the search engine as part of the query (/fuzzy, /fuse, /regex, /subs). Merged code for option to hide pinned tabs, thanks @hbj.

2019.12.2 - fix #277 and #291 for real this time!

2019.11.30 - Updated the bookmark and history searches to use '/b ' and '/h ' as query prefixes, still use ' ' and ' ' as query postfixes. Fixed a bug with the pg up/down list scrolling. Fixed issue that prevented prev-tab key working in popup windows (issue #277).

2019.11.27 - fix tab focus issue #273, thanks @fwextensions for the pointer

2019.11.23 - merged pull request to allow configuration of the "tab order update delay", see ticket #90 (thanks @AlexeyKabelitskiy)

2019.4.22 - merged pull requests to ensure https:// is used for default google search (thanks #ericlaw1979), apply {{urlStyle}} to recently closed tabs (thanks @boika), improve tab switching (thanks @MartinLichtblau)

2019.2.27 - merged pull request that fixes #229 #245 #246 (and perhaps #232), also changes that improve switching tabs behaviour, thanks @MartinLichtblau. Added 'theRealPadster.css' large icon theme, thanks @theRealPadster.

2019.1.30 - merged pull request to prevent tabs opened in the background jumping to the head of the recently used list (#219, thanks @MartinLichtblau)

2019.1.20 - merged pull request to fix result highlighting issues that included curly braces (#242, thanks @DoctorGester)

2019.1.10 - merged pull request to improve fuzzy search results (#241, thanks @MartinLichtblau)

2018.11.26 - fixed invalid css (#200, thanks @boika), added license file (#212), updated shortcut config documentation (thanks @Kevin-Prichard) and added support to retain the popup search string (thanks @MeetM)

2017.10.8 - fixed scrolling issue (fixes #195)

2017.10.7 - merge title tooltip fix, thanks @Rohaq. Also merged in jQuery update and some code cleanup, thanks @toanju. Changed the scrolling code to use noobscroll.js

2017.5.10 - fix issue where current tab is displayed on initial popup rendering (fixes #170)

2017.5.3.1 - bookmark search bug fix

2017.5.3 - substring bug fix

2017.5.2 - change the search implementation to allow users to select between fuzzy, fuze, regex or substring tab searching (fixes #167, #97)

2017.4.25 - possible workaround for existing Chrome bug (refs #91, #168), thanks @TimNZ

2016.9.20 - switched the tab search library to fuse.js (thanks to @rajington), fix window focus problem when using keyboard only (#101, #145 thanks @pearj)

2016.7.16 - change default extension key to ctrl+q on Linux since ctrl+e does not work, thanks @zweicoder (fixed #138), open a website address from the search box in the popup (#108), it takes a second to reorder tabs in a list after switching between tabs (fixed #103)

2016.3.20 - fix data: favicon handling bug (#124)

2016.3.15.1 - fix URL encoding bug

2016.3.15 - switch template engine to mustache.js to simplify render code (remove iframe/sandbox and speed up overall popup render), fix option key save bug (#119), add option to prevent auto searching bookmarks (#115).

2016.3.12 - fix issue where popup window height would increase on window redraw css fixes, thanks @easyfuckingpeasy. Typo fix, thanks @elimisteve

2016.3.10 - fixes

2015.10.13 - removed default key mappings for next/previous to prevent unexpected chrome behaviours (#99)

2015.10.9 - update the next/prev popup window shortcut keys to use the same mappings as the command keys

2015.10.7 - work around Window list positioned oddly (#91), thanks @todoakaio. Added media indicator favicon, search for "<))" to show only noisy tabs (#59). Added shortcut keys to switch between tabs in the tab list without displaying the popup (#93). Added delay before moving tabs to the top of the tab list (#90)

2015.6.14 - merged option to move the tab to the last tab when switching, thanks @phorust

2015.4.30 - fixed issue when rendering bookmarklet code in search results, thanks @benbarth. Added history filter option, allows history search results to be filtered through a regular expression and exclude matches (for example this can be used to exclude past google searches)

2015.4.18 - optimize secondary history searches

2015.4.17 - fixed issue opening urls when they contain search character matches. Added support to fuzzy history search by starting or ending the search string with 3 spaces

2015.4.8 - underline search string hits, add option to include URLs when searching even if they are not being displayed in the tab list

2015.3.31 - added show/hide badge tab count option, removed the css rules that forced the popup window to a specific size (allowing chrome to manage that)

2015.3.12 - added css option placeholder to avoid confusion over expected textarea content

2015.3.8 - popup window timers, separate mouse hover style from keyboard navigation focus to prevent focus jumps when the popup opens under the mouse pointer

2015.3.3 - popup window cleanup, search urls only if displayed

2015.2.28 - library updates, better scrolling, search bookmarks by starting or ending your search string with spaces

2015.2.26 - performance improvements, fuzzy searching and tighter UI

2015.2.25 - added support for bookmarks search ( IMPORTANT adding bookmark search required adding bookmark permissions, READ ONLY access only ) and UI style updates, huge thanks to @oarrabi for this

2015.1.2 - delay script execution till window.onload fires (closes #70), thanks @aakash-shah

2014.12.27 - re-enable mouseover events (close #69), thanks @KayNoSpam

2014.12.23 - quick fixes for the two reoccurring errors, thanks @heavyk. Moved the template rendering code into a sandbox as per https://developer.chrome.com/extensions/sandboxingEval

2014.9.27 - support custom css through the extensions option page, this supports custom styling of the popup window (for example https://userstyles.org/styles/99938/better-styling-for-chrome-extension-quick-tabs by @Bunnyslippers)

2014.9.13 - permissions fix, thanks @jtanner

2014.7.8 - More stability improvements

2014.7.6.1 - NPE bug fix

2014.7.6 - bug fixes and allow cycling through with TAB and SHIFT+TAB (close #28), allow PageUp/PageDown navigation (close #53), thanks @eush77

2014.7.1 - merged fix to html encoding bug, thanks @eush77

2014.5.6 - add vim style next/prev keys to popup, thanks @roblund

2014.4.4 - performance improvements, thanks @philippotto for the work and inspiration (and @olado for doT.js)

2014.1.14 - fixed shortcut keys issue

2014.1.12 - merged design improvements, thanks @rodrigok

2013.11.2 - merged shortcut key update, thanks @Mononofu, based on this update I have rewritten the shortcut code and stripped all the content-script stuff out, no more tab reload warnings or window placement issues and the extension works on chrome:// pages

2013.8.4 - merged fix for issue #35, thanks @kho

2013.6.24 - merged fix for issue #8, thanks @yaauie

2013.5.1 - fix for bug #44, Showing nonexistent "New Tabs" open with incorrect total

2013.1.23 - bug fixes, removed console logging

2012.12.9 - bug fixes, pressing the popup load shortcut once the popup has loaded now selects the next tag in the list

2012.12.8 - bug fixes and performance improvements

2012.12.7 - bug fixes and code updates

2012.12.4 - applied patches from @konk303 (line hight, ctrl+n/ctrl+p tab select keyboard shortcuts), @ignacysokolowski (search delay option and integer parse bug) and @slay2k (huge code update, updated to manifest version 2, library version updates and improved search matching)

2011.2.18 - applied patches from @yaauie, option to set search provider, open popup in the middle of current window, compatible with multiple monitors

2010.6.27 - applied crtl+D tab close tab focus enhancement patch from @osheroff

2010.5.8 - updated since chrome bug fix to allow tab focus switching between windows in 5.0.375.29 - big thanks to @clayhinson. If a tab search returns no results and you press enter a new tab will be opened and if the search is a url it is loaded in the tab otherwise a google search is performed.

2010.3.2 - fixed a bug that cause the popup to close in dev version 5.0.336.0 (39716) - thanks @ds :D

2010.2.21 - added more display options and improved scrollbar - thanks @Randy

2010.1.31 - better list scrolling and fixed some minor bugs

2010.1.30 - fixed display when urls are hidden, also resolved shortcut key issues created in the last release

2010.1.17 - changed default popup keys to ctrl+m due to windows issues, added button to close selected tab

2010.1.9 - css fixes for popup window, option to hide URL's

0.9.10 - exclude devtools by default, ctrl+d and ctrl+shift+d shortcuts added

0.9.9 - added options page, recently closed tab tracking, shortcut key configuration and fixed search list highlighting bug

0.9.8 - removed tab auto-reload on install, now alert users when tab reload is required

0.9.7 - bug fixes

0.9.6 - reduced popup size when few tabs are open

0.9.5 - fixed missing scrollbars on Linux

ACKNOWLEDGEMENTS

Inspired by http://www.jetbrains.com/idea/

Icon image based on photo by Ged Carroll found at http://www.flickr.com/photos/renaissancechambara/3380657988/

Blank Icon by Deleket (Jo) http://deleket.deviantart.com/

quick-tabs-chrome-extension's People

Contributors

babyman avatar benbarth avatar doctorgester avatar elimisteve avatar eush77 avatar heavyk avatar ignacysokolowski avatar jaekyeom avatar jimb-dev avatar jtanner avatar kjelly avatar legate avatar marnovo avatar martinlichtblau avatar meetm avatar mngyuan avatar mononofu avatar nicoweio avatar nkgm avatar osheroff avatar philippotto avatar piyush1104 avatar rajington avatar roblund avatar rodrigok avatar shihshen avatar slay2k avatar toanju avatar wizek avatar yaauie avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

quick-tabs-chrome-extension's Issues

limit size to open tabs

This would be good if it sized to the amount of tabs open... takes alot of space for when I only have a few tabs.

an expandable tab list window size

Jon11: Small request - an expandable (or set by option) tab list window size - I currently have 21 open tabs and it would be nice if I could list them all down the page.

Include current tab in the tab list

It will be much better to include the current tab in the list. I would like to see the following list besides the filter input box.

Current tab (bold text)
Last selected tab 1 (selected)
Last selected tab 2
Last selected tab 3
......

Closed tabs list size

When I check "none" and apply changes after reopening options page or after restarting chrome the value jumps back to 10 (every higher value still there after applying changes).

Or include single option to disable closed tabs list

Google Chrome 23.0.1271.97

an option not to show the browser action button

Henrik Nyh4: If the extensions API allows (didn't see anything on a quick browse), I'd like an option not to show the browser action button. It clutters up the UI and isn't necessary to switch tabs. If there's no option, maybe consider removing it altogether?

Hotkey invocation is slow, at times ~600ms

This likely has something to do with the indexing being very slow. Otherwise, it is due to the extension itself having a slow load time. You might consider running it in a worker or keeping it "always on", so that hotkey invocation for search has a more native feel that does not get between me and my tab.

I don't do much extension development generally, but as I use this often, I will make some time to have a look into fixing this soon.

Unwanted tab selection by mouse

When I use a keyboard shortcut (Ctrl-q in my case) in order to display Quick-Tabs, and if my mouse is in the middle of the screen, the tab that is just under a mouse cursor is automatically selected.
I am expecting that the last recently used tab is always selected, independently of the position of the mouse.

map the apple command key

i just installed but am wishing i could map apple-e like Intellij, but only see options for ctrl/shift/alt. Is there a way to enable the apple key as a selection?

Sometimes not all tabs are listed

As said in title, sometimes not every tab is listed. At the moment, I cannot tell when this happens. It is not tab-specific. Means: A tab, that is not listed, may be listed some minutes later. If I can reproduce the bug, I will tell you. Maybe someone else has this problem?

Targeted search (open, closed, bookmarks, history)

IntelliJ IDEA allows you to search for different types of content. It would be great to be able to specify where to search. Via different shortcuts or with some prefix like "b:" search bookmarks.

search all (sorted first tabs, then bookmarks, then history)
open tabs
closed tabs
bookmarks search
history search

Add media indicator

Last chrome versions provide small indicator on tab where audio is playing.
This is very usefull when search these kind of tabs.

when I type to filter the list, the first item isn't kept selected

Henrik Nyh4: Also: for me (Chromium on OS X), when I hit ctrl+e, the first item in the list is selected (has a dark blue bg), but when I type to filter the list, the first item isn't kept selected. Sometimes it is, sometimes not.

Almost looks as if the extension only updates the selection every few keystrokes. So I can type "foob" and the single item listed is not selected. Then I type an "a" for "fooba" and now it's selected.

Sometimes doesn't switch to window with tab

Hi,

I'm finding I can recreate this problem on at least two installations of Chrome. I find that if I hit ctrl-m, type in the tab I'm looking for, find the tab, and hit enter, sometimes the focus doesn't change to this tab. I've found that this happens very consistently if the tab is the tab with focus in a different window.

Provide option to keep the order of the open tabs

Hello,

It would be nice if a feature can be added, which keeps the order of my open tabs in your quick-tabs-extension.
Example:
Browser looks like this:
tab1, tab2, tab4, tab3, tab7, tab10, ...
Quick Tabs should order his list the same structure as the browser. Currently you add the latest tabs to the top, ignoring where they are opened. This feature as an option would be wonderful ;)

BR,
mybecks

Switching to a tab resizes the browser window

When switching to another tab, if the window is currently maximized, its dimensions change to its last non-maximized size. The maximize/restore button does not change, though, i.e. the window looks non-maximized but the button shows "restore", not "maximize", and you have to press it twice to maximize the window back. Chrome 6.0.472.55 on Windows 7 64-bit.

Popup missing scrollbars on Linux

But as i said in comments to TabSearch in Linux in popup window that lists all open tabs there is no scrollbar and list going off-screen.

Option to change font

Would be nice to have the tab list shown with the same font as used in the tabs themselves. On Windows at least the tab list defaults to something like Verdana? and looks a little discordant to my eyes.

Other little visual improvements would be to reduce line spacing when not showing urls, and turn off the line separators.

wrap the cursor around when using the keyboard arrows

Travis Fielding - I just thought of something else that would make it more like Intellij:

  • when at the top of the list and using the cursor to press UP, it would be great if the selection jumped to the bottom of the list, and vice versa from bottom to top.

Showing nonexistent "New Tabs" open with incorrect total

Lately Quick Tabs has been incorrectly showing a bunch of empty "New Tabs":

Screen Shot 2013-04-01 at 4 36 57 PM

(Screenshot doesn't show incorrect tab count.) Not sure what's happening here. There doesn't appear to be a cause (so I'm afraid I don't know how you can reproduce the problem). Restarting Chrome fixes the problem and the tab count. Chrome 26.0.1410.43 on OSX 10.8.3.

Window resize oddly when selecting tab

When selecting to switch to a tab, the window resizes, this behaviour is showed only when the the window is not full screen.

Other information:
OS: Windows 7
Chrome Version: 5.0.375.55 beta

Closed Tabs Visibility

Although the closed tabs on the drop down are useful, would it be possible to make them easier to distinguish from open tabs in some way? Perhaps dim them slightly more?

Delete and delete-all shortcuts don't work

I absolutely love this extension, it's exactly what I need, often amassing way too many tabs (83 as we're speaking)... However, unfortunately the commands to kill tabs don't work. (I am especially interested in kill-all, after narrowing with search - for example after researching python for a while, I might want to kill all 20 Python-related tabs quickly)... I tried uninstalling and installing from Github HEAD, and I also tried to assign other keyboard shortcuts. I'm on Chrome Dev (33.0.1750.22 dev), don't know if that matters?

I'd be happy to help you diagnose this, since I really want it to work - let me know how I can provide more information. Thanks!

Doesn't work in Linux

I use Chrome 19 in 64bit Kubuntu Natty Linux.

The only function that works is Ctrl+M to open my list of tabs. Ctrl-Tab does not navigate through the tabs in MRU order.

Adding a custom shortcut that closes the current tab seems odd, since most (every?) browsers already do that with Ctrl+W.

Quickly switch between last used tabs

I see this extension filling the functionality offered by LastTab firefox extension. However one most used feature in that is the Ctrl+Tab to switch to the last used tab. I request adding that feature to this extension.

diagonal list bug

when i opt not to show url's, the list shows in a diagonal fashion, where each successive tab name shows a little more indented to the right of where the previous tab name started. when i opt the url's to show again, the list displays normally, with all names starting at the left margin. weird! i like this extension, but would like this bug fixed, please! using xp pro. i can send a screenshot if needed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.