Duration Sort for YouTube Subscriptions
Adds a button to re-sort YouTube subscriptions by their duration.
O que é Duration Sort for YouTube Subscriptions?
Duration Sort for YouTube Subscriptions é uma extensão do Chrome desenvolvida por Evan Kohilas, e sua principal característica é "Adds a button to re-sort YouTube subscriptions by their duration.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Duration Sort for YouTube Subscriptions
Baixe arquivos de extensão Duration Sort for YouTube Subscriptions 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
If you've ever wanted to navigate through your YouTube subscription feed by video duration, this extension will let you do that through a native sorting button.
Informações Básicas da Extensão
Nome | |
ID | ogelmlojlklfapffhdeelmfpkpdbocha |
URL Oficial | https://chrome.google.com/webstore/detail/duration-sort-for-youtube/ogelmlojlklfapffhdeelmfpkpdbocha |
Descrição | Adds a button to re-sort YouTube subscriptions by their duration. |
Tamanho do Arquivo | 27.18 KB |
Contagem de Instalações | 95 |
Versão Atual | 0.1.0 |
Última Atualização | 2021-03-24 |
Data de Publicação | 2021-03-23 |
Classificação | 2.33/5 Total de 3 Avaliações |
Desenvolvedor | Evan Kohilas |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ekohilas/youtube-duration-sort |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Duration Sort for YouTube Subscriptions", "short_name": "Duration Sort", "description": "Adds a button to re-sort YouTube subscriptions by their duration.", "version": "0.1.0", "manifest_version": 3, "author": { "name": "Evan Kohilas", "url": "https:\/\/github.com\/ekohilas\/youtube-duration-sort" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/feed\/subscriptions" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" } }, "icons": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" }, "options_page": "options.html" } |