aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
AgeCommit message (Collapse)Author
2014-05-17Remove unnecessary if statementPhil Crosby
2014-05-17Fix options link in help dialogmrmr1993
This makes the options link in the help dialog cancel the default event action, so the link (`href="#"`) isn't followed. The former behaviour was most obvious when using the `LinkHints.activateModeToOpenInNewTab` command, amoung others.
2014-04-30Add a comment explaining the CSS for file:// URLsmrmr1993
2014-04-30Fix searching on file:// URLsmrmr1993
2014-04-30Merge remote-tracking branch 'mrmr1993/openLinkInFGTab'Phil Crosby
Conflicts: content_scripts/link_hints.coffee
2014-04-25Make a function more clearly a functionPhil Crosby
2014-04-25Merge pull request #1040 from mrmr1993/noCacheLHFilterTypePhil Crosby
Query filterLinkHints setting every time, not just page load
2014-04-25Query filterLinkHints setting every time, not just page loadmrmr1993
2014-04-25Fix Open Link in Current Tab commandmrmr1993
2014-04-25Remove unnecessary checks for ctrl, shift keys in LinkHintsmrmr1993
2014-04-25Change description and names in LinkHints for claritymrmr1993
2014-04-25Remove the link hint activation delayPhil Crosby
Adding 400 ms delay to every click sucks. It's a good UX to see which link you clicked on, but I think the cost is too high. Give this a try and let me know if you think it's too jarring. This is in response to #799.
2014-04-23Add vomnibar css rule to avoid page overridingmrmr1993
2014-04-23Prevent passing through <ctrl> in LinkHintsmrmr1993
2014-04-23Allow tap to toggle LinkHints mode, remove nonfiring codemrmr1993
2014-04-23Fix typomrmr1993
2014-04-23Add openlinks in foreground mode and fix #1035mrmr1993
2014-04-23Merge pull request #838 from sainaen/fix_handlerStackPhil Crosby
Fix minor error with handlerStack in content script
2014-04-19Use RegExp to escape special characters for plain find queriesmrmr1993
2014-04-19Add a comment explaining match counting for string searchesmrmr1993
2014-04-19Implement number of matches in find modemrmr1993
2014-04-16Escape HTML in HUD from searches (fixes #913)mrmr1993
2014-03-01Add Vomnibar.activateEditUrl commandsDevin Weaver
Often times when I'm working on sites I want to add a query string or modify the port number. The go up one level or root of the URL commands are nice but they don't alow you to add or remove specifics on the current URL. This adds two commands that act exactly like the normal onmibar open but populates the bar with the current URL. I picked `ge` as the default and `gE` as the default for the same in a new tab.
2013-12-15Stop keyup events for Issue 733tejohnso
2013-12-13Prevent bookmark dialog font from being affected by pageScott Perlitch
2013-10-09Add favicons to vomnibar completionsLyall Hamilton
Favicons are displayed as a background-image style next to urls in similar style to chrome's history page. For tabs the icon is fetched from the url specified by chrome tab's favIconUrl property. Unfortunately extensions to not have access to chrome://favicons/ to get bookmark favicons but fortunately most sites serve a favicon from protocol://hostname/favicon.ico (e.g. http://example.com/favicon.ico) so this url is tried for non-tab types.
2013-09-12Changed deprecated chrome.extension on chrome.runtime in all files and fix testsMaksim Ryzhikov
2013-09-12Changed deprecated chrome.extension on chrome.runtime [Chromium v29] (fixed ↵Maksim Ryzhikov
#908)
2013-08-23Add a todoPhil Crosby
2013-08-22Some events don't have `keyIdentifier`Joey Baker
This was throwing an error for me on some events.
2013-07-20trim then filterUncleBill
2013-05-25Replace `sendRequest()` calls with `sendMessage()` ones in marks.coffeesainaen
Fixing incomplete commit 9403692e51, replacing old API calls with the new ones in two more files: `background/marks.coffee` and `content_scripts/marks.coffee`.
2013-05-12Fix error with handlerStack in link_hints content scriptsainaen
2013-05-06Content script should handle message even when there is no tab propertysainaen
2013-05-06Replace all deprecated sendRequest() calls with new sendMessage()sainaen
2013-03-06Shorten names.Jez Ng
2013-03-06Merge remote-tracking branch 'deiga/patch-4'Jez Ng
Conflicts: background_scripts/commands.coffee
2013-02-18Renamed to 'goToRoot', condensed functionTimo Sand
2013-02-17Implemented opening links in IncognitoTimo Sand
2013-02-17Trying to add incognito window openingTimo Sand
2013-02-16Added `gU` command to go to root of page including current port and protocolTimo Sand
2013-01-31Fix #766 vomnibar is displaying incorrectly on pages that have CSS setting ↵Nick Peeples
the input styles
2013-01-02Make smartcase locale-aware.Jez Ng
2012-12-18Fix #464 - Support placeholder attribute for inputs in find modemike
Whereas find mode normally identifies inputs by their value, if a value is blank, find mode will use the placeholder value instead, if it exists
2012-12-09Don't close link hints when shift is pressedChristopher Manning
2012-11-22Enter on empty vomnibar a no-op.Stephen Blott
2012-11-12Allow ctrl+enter to open a suggestion in a new tabPhil Crosby
It's pretty natural to hit CTRL+N and CTLR+P to select a choice, and then CTRL+enter to open it in a new tab. But previously that didn't work on mac.
2012-11-10Inject bookmarklets by appending them as scripts.Jez Ng
This *should* fix the permission problems that `eval` faced. Closes #575, #710.
2012-10-30Avoid trapping non-tab keypresses in focusInput mode.Jez Ng
2012-10-29Move a bunch of stuff under pages/ for tidiness.Jez Ng
Also correct a bug with the show / hide advanced commands button.