Follow Links

Extensión que resalta los enlaces FOLLOW, NOFOLLOW, UGC y SPONSORED

Wat is Follow Links?

Follow Links is een Chrome-extensie ontwikkeld door fernichum, en de belangrijkste functie is "Extensión que resalta los enlaces FOLLOW, NOFOLLOW, UGC y SPONSORED".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Follow Links

Download Follow Links-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Esta extensión se encarga de colorear el borde de los enlaces en función del valor/valores que tenga dentro del atributo rel

Follow: Verde

Nofollow: Rojo

UGC: Naranja

Sponsored: Morado                    

Basisinformatie over de Extensie

Naam Follow Links Follow Links
ID opgacknhlddhmaimgelfflcgjblondhg
Officiële URL https://chromewebstore.google.com/detail/follow-links/opgacknhlddhmaimgelfflcgjblondhg
Beschrijving Extensión que resalta los enlaces FOLLOW, NOFOLLOW, UGC y SPONSORED
Bestandsgrootte 55.89 KB
Aantal Installaties 280
Huidige Versie 0.1.0
Laatst Bijgewerkt 2019-12-19
Publicatiedatum 2019-12-18
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar fernichum
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Follow Links",
    "short_name": "Follow Links",
    "version": "0.1.0",
    "description": "Extensi\u00f3n que resalta los enlaces FOLLOW, NOFOLLOW, UGC y SPONSORED",
    "author": "Fernando Jalon",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_title": "Follow Links",
        "default_icon": "icon_128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}