Follow Links

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

Follow Links là gì?

Follow Links là một tiện ích mở rộng Chrome được phát triển bởi fernichum, và tính năng chính của nó là "Extensión que resalta los enlaces FOLLOW, NOFOLLOW, UGC y SPONSORED".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Follow Links

Tải xuống các tệp mở rộng Follow Links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Follow Links Follow Links
ID opgacknhlddhmaimgelfflcgjblondhg
URL Chính Thức https://chromewebstore.google.com/detail/follow-links/opgacknhlddhmaimgelfflcgjblondhg
Mô tả Extensión que resalta los enlaces FOLLOW, NOFOLLOW, UGC y SPONSORED
Kích Thước Tệp 55.89 KB
Số Lần Cài Đặt 280
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2019-12-19
Ngày Phát Hành 2019-12-18
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển fernichum
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}