⚠️ This article is written for Mac OS.
When Chrome introduced Tag Groups, it was a big organizing aid. I found there were a couple things missing to make it really productive: keyboard shortcuts.
Continue reading “Chrome Tabs Keyboard Shortcuts”<アンダブロッブ />
⚠️ This article is written for Mac OS.
When Chrome introduced Tag Groups, it was a big organizing aid. I found there were a couple things missing to make it really productive: keyboard shortcuts.
Continue reading “Chrome Tabs Keyboard Shortcuts”To write a Chrome extension that allows ES6 imports
, imitate <script type="module">
with a dynamic import:
Chrome extensions exist in an “isolated world” to prevent global var collisions between the website and the extension that runs on a given website. This mostly applies to content_scripts
in an extension.
E.g. window.foo
: my extension declares foo
in the global scope and the website the extension runs on also declares foo
in the global scope. With “isolated world” scoping for the extension, this is not a worry since it doesn’t share scope with the web page it runs on.