Follow Links

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

What is Follow Links?

Follow Links is a Chrome extension developed by fernichum, and its main feature is "Extensión que resalta los enlaces FOLLOW, NOFOLLOW, UGC y SPONSORED".

Extension Screenshots

screenshot

Download Follow Links Extension CRX File

Download Follow Links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Follow Links Follow Links
ID opgacknhlddhmaimgelfflcgjblondhg
Official URL https://chromewebstore.google.com/detail/follow-links/opgacknhlddhmaimgelfflcgjblondhg
Description Extensión que resalta los enlaces FOLLOW, NOFOLLOW, UGC y SPONSORED
File Size 55.89 KB
Installation Count 280
Current Version 0.1.0
Last Updated 2019-12-19
Publish Date 2019-12-18
Rating 5.00/5 Total 5 Ratings
Developer fernichum
Email [email protected]
Payment Type free
Supported Languages 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": [
                ""
            ]
        }
    ]
}