Skip to content
#

Chrome

chrome logo

Chrome is the most popular web browser worldwide as of mid-2017, made by the tech company Google. It's available for most operating systems including Windows, macOS, and Linux and on multiple platforms such as the desktop, phones, and tablets.

Chrome boasts a minimalistic UI and was the first browser to feature "tabs" above the address bar, a convention that was later implemented in other browsers. Other popular features include things such as Incognito mode, tab sandboxing, and a Web Store with extensions and themes.

Although Chrome is not open source, the majority of the source code is available under the Chromium moniker.

Here are 3,186 public repositories matching this topic...

electron
octotree
ghost
ghost commented Apr 10, 2018

Description

some repos have docs/extensive descriptions/additional info
only in their wikis and not always clearly linking to it from readme (or even mention it)

and the wiki-tab on a repo shows up even if the wiki itself is empty (unless disabled in the settings)

so, it would be super helpful to have available wiki-pages to always be visible in the sidebar

JereMc
JereMc commented Mar 29, 2018

I tried the call this way:

let nightmare = Nightmare({ show: false});
  (async () => {
    try {
      const doc = await nightmare
        .goto(url)
        .evaluate(() => {
          return document.documentElement.innerHTML;
        })
        .end();
      return doc;
    } catch(e) {
      console.error(e);
      return undefined;
    }
  })();

and this

Mikey1993
Mikey1993 commented Jan 12, 2015

One could accidentally erase his process on a page (or ,say, a game) by hitting the wrong "reload button" on the statistics page (clicking the page reloading button instead of the statistics reload top one)
There are no tooltips whatsoever, but even if there were, one could be mislead.

A thought:
Isn't the top statistics reload button is even needed now that the statistics are initiated only by a

jasonLaster
jasonLaster commented Nov 10, 2017

At the moment, we encourage contributors to work on the debugger in the launchpad. This has a lot of benefits, but it has some drawbacks too:

  • it is not clear how to debug panel issues
  • it is not clear that the debugger is the firefox debugger

Tasks:

  • We should improve the docs so that it is clear it is the firefox debugger
  • improve the workflow for building and running firef
Hoishin
Hoishin commented Mar 1, 2018

What is the current behavior?
Miss the type definition file.

What is the expected behavior?
Have the type definition file.

What is the motivation / use case for changing the behavior?
Supports TypeScript and makes it easier to code in IDE.

I've already written the type definition from API documents in README. I'd be willing to open pull request here or at https://gith

iwestlin
iwestlin commented Oct 25, 2016

There is a site I used to visit, which is forbidden for visitors to open context menu or select any context. So I write a mapkey to hack this:

mapkey('zz', 'allowing select and right click', function() {
    document.onselectstart = '';
    document.oncontextmenu = '';
}, {domain: /example\.com/i});

But it failed(it works in tampermonkey), I think it's because there are differ

Created by Google

Released September 2, 2008

Organization
googlechrome
Website
www.google.com/chrome

Related Topics

browser chrome-extension chromium
You can’t perform that action at this time.