The Wayback Machine - https://web.archive.org/web/20201004115110/https://github.com/topics/chrome-extension
Skip to content
#

Chrome extension

chrome-extension logo

Google Chrome Extensions are add-ons that allow users to customize their Chrome web browser. They are downloadable through the Chrome Web Store. Extensions are most often written in HTML, JavaScript, and CSS.

Here are 8,573 public repositories matching this topic...

refined-github
headless-recorder
ric2b
ric2b commented Aug 7, 2020

Trying to record typing into a date field doesn't work for me, it just types on the yyyy section of the date and ends up completely invalid.

What I've had work really well was replacing await page.type(selector, '2020-08-07'); with:

await page.focus(selector);
await page.keyboard.type('20200807');

Would it be within scope of the extension to recognize date inputs

cdharris
cdharris commented Jun 17, 2020

Remote Functions Refactor

Overview

Remote functions exist to enable background->tab, and tab->background function delegation (i.e. Call a function in a tab, but have it run in the background and vice versa).

Refactoring has been started to make these functions interfaced and type safe.

Tasks

Grepping the codebase for remoteFunction( shows where it's still being us

Created by Google Inc.

Released December 8, 2009

Website
chrome.google.com/webstore/category/extensions
Wikipedia
Wikipedia
You can’t perform that action at this time.