Twitter old favourite

Replace the new twitter heart favourite icon with the old star icon.

O que é Twitter old favourite?

Twitter old favourite é uma extensão do Chrome desenvolvida por Miles Croxford, e sua principal característica é "Replace the new twitter heart favourite icon with the old star icon.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitter old favourite

Baixe arquivos de extensão Twitter old favourite 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

                        Don't like the new heart button? Feel no love? This extension reverts and replaces the new twitter heart favourite icon to that old yellow star that everyone is missing.                    

Informações Básicas da Extensão

Nome Twitter old favourite Twitter old favourite
ID lkfbecccmniadcbdhkeepdkfekhloinc
URL Oficial https://chrome.google.com/webstore/detail/twitter-old-favourite/lkfbecccmniadcbdhkeepdkfekhloinc
Descrição Replace the new twitter heart favourite icon with the old star icon.
Tamanho do Arquivo 8.49 KB
Contagem de Instalações 40
Versão Atual 0.1
Última Atualização 2015-11-03
Data de Publicação 2015-11-03
Classificação 3.17/5 Total de 6 Avaliações
Desenvolvedor Miles Croxford
Tipo de Pagamento free
Site da Extensão http://milescroxford.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter old favourite",
    "description": "Replace the new twitter heart favourite icon with the old star icon.",
    "version": "0.1",
    "permissions": [
        "*:\/\/twitter.com\/*"
    ],
    "web_accessible_resources": [
        "stars.png"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}