Giter Club home page Giter Club logo

firefox-command-palette's People

Contributors

dj311 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

firefox-command-palette's Issues

Hint stays up even after a command typed in

Right now, the "Search for a command or type `help` for more information" suggestion stays after you type in a command:

image

This means you can't just press Enter if the command is right (like in command palette implementations in Sublime/Atom/VSCode).

Note that I'm on Waterfox and I'm not sure if this reproduces in Firefox. Please tell me if you'd like me to check it.

P. S. Thank you for this addon!

[FR] - duplicate tab

Hello!

I like the concept how this extension works, good work!

FF really should have a command list popup like VSCode

It would be nice If I have a duplicate tab shortcut, so I created a sample code for it.

What do You think?

commands.js:

commands = [
// ...
    {
        name: 'duplicate this tab',
        desc: '',
        run: async () => {
            const tabs = await browser.tabs.query({
                active: true,
                currentWindow: true,
            });

            if (tabs.length > 0) {
                const activeTab = tabs[0];

                browser.tabs.duplicate(activeTab.id);
            }
        },
        args: () => [],
    },
// ...
];    

Feature: Show actions exposed by other installed addons

Thanks for the very useful extension.
It will be great if this extension is able to show actions exposed by other installed addons in the browser. Like toggle dark reader for current site. Toggle ublock/adblock for current site.

I understand that this may not be possible or might be complicated. Just wanted to suggest the idea.

[FR] Search tabs

It would be awesome if there was a "search tabs" mode. Like if I pushed # as the first char it would open search tabs mode and have a toggle to make it default.

--reese

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.