Skip to content

Chromium bugs we're tracking

ilya edited this page Sep 13, 2010 · 32 revisions

Add the ability to manipulate the clipboard from content scripts or background pages
(this is required so we can implement “yy”, to yank the current page’s URL to the clipboard)
28941

Content scripts on view-source: pages
30516

Javascript: initKeyboardEvent has no effect
It may be possible to trigger the native find dialog programmatically by using something like
event=document.createEvent(“KeyboardEvent”);
event.initKeyboardEvent(“keydown”, true, true, null, “U+0046”, 0, “accel”); // 046 is F; accel = meta
document.body.dispatchEvent(event);

However, I can’t run this experiment because event.metaKey is always false, I believe because of this bug:
27048

Content scripts are run multiple times on some pages. This is the root cause of #10.
32346

Simulated links made from content scripts trigger the popup blocker. This is the root cause of #26.
32350

When restoring tabs, we don’t preserve Chrome’s tab order or history. Here is a feature request for Chrome to give us an API to hook into their tab reopening system, which would solve both issues for us.
14737

Content scripts don’t run on non-html (images). Issue #99.
12082
32619

Clone this wiki locally