Titles On Youtube Links

Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!

O que é Titles On Youtube Links?

Titles On Youtube Links é uma extensão do Chrome desenvolvida por jozxyqk, e sua principal característica é "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Titles On Youtube Links

Baixe arquivos de extensão Titles On Youtube Links 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

                        Displays a custom "title text" with video titles when you mouse-over youtube links.

Designed to be very light-weight and unobtrusive.

Specifically, it catches hover events on  links, uses the youtube API to fetch the title (if not already cached), and displays it by creating a 
positioned above the link with the title.

Informações Básicas da Extensão

Nome Titles On Youtube Links Titles On Youtube Links
ID lkkpcpneigfenfmcbpllkkfahcmhhhjl
URL Oficial https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl
Descrição Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Tamanho do Arquivo 38.82 KB
Contagem de Instalações 168
Versão Atual 2.0
Última Atualização 2020-04-08
Data de Publicação 2020-04-07
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor jozxyqk
Tipo de Pagamento free
Site da Extensão https://github.com/pknowles/titlesonyoutubelinks
URL da Página de Ajuda https://github.com/pknowles/titlesonyoutubelinks/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Titles On Youtube Links",
    "short_name": "Youtube Link Titles",
    "description": "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!",
    "version": "2.0",
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-2.2.0.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "content.js"
            ]
        }
    ]
}