Useful Bookmarklets

Click it to display a list of useful bookmarklets based on the page you're in.

O que é Useful Bookmarklets?

Useful Bookmarklets é uma extensão do Chrome desenvolvida por https://xaviesteve.com, e sua principal característica é "Click it to display a list of useful bookmarklets based on the page you're in.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Useful Bookmarklets

Baixe arquivos de extensão Useful Bookmarklets no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        A simple Chrome extension that lists useful actions based on the website you're in.

Useful Bookmarklets is a tiny little extension that groups many bookmarklets together in a single button and only displays the ones you need based on the website you're currently visiting.

I built it for myself because I use a ton of bookmarklets on my day to day and wanted to share it with everyone hoping it helps you become more productive.

The extension is completely free and privacy-friendly, there are no trackers and it only activates when you click it, some bookmarklets use other website's services, hover with your mouse on each bookmarklet to learn more about each of them.

New actions/bookmarklets are added as I come across new ideas, feedback welcome.

Source code available here: https://github.com/luckyshot/useful-bookmarklets

Feel free to submit Pull Requests with more bookmarklets (these need to be converted back to vanilla JavaScript code to comply with Google's Manifest V3 security limitations).                    

Informações Básicas da Extensão

Nome Useful Bookmarklets Useful Bookmarklets
ID enkpcakhbphiggniicbgdhgjifamgpmm
URL Oficial https://chromewebstore.google.com/detail/useful-bookmarklets/enkpcakhbphiggniicbgdhgjifamgpmm
Descrição Click it to display a list of useful bookmarklets based on the page you're in.
Tamanho do Arquivo 36.72 KB
Contagem de Instalações 31
Versão Atual 1.0.1
Última Atualização 2022-12-14
Data de Publicação 2022-11-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://xaviesteve.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://xaviesteve.com
URL da Página de Ajuda https://xaviesteve.com
URL da Página de Política de Privacidade https://xaviesteve.com/legal
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Useful Bookmarklets",
    "description": "Click it to display a list of useful bookmarklets based on the page you're in.",
    "manifest_version": 3,
    "version": "1.0.1",
    "action": {
        "default_icon": {
            "16": "icon.png",
            "24": "icon.png",
            "32": "icon.png"
        },
        "default_title": "Show bookmarklets",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "scripting"
    ]
}