NoFollow

Outline nofollow links, detect nofollow and noindex meta tags on webpages. Features website filtering and custom CSS outline styles.

NoFollowคืออะไร?

NoFollow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://igorware.com และคุณลักษณะหลักของมันคือ "Outline nofollow links, detect nofollow and noindex meta tags on webpages. Features website filtering and custom CSS outline styles."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NoFollow

ดาวน์โหลดไฟล์ส่วนขยาย NoFollow ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        :: Features
 ★ supports NOFOLLOW, UGC, and SPONSORED attribute values
 ★ supports search engine specific robot meta tags
 ★ disable or enable extension for defined websites


:: Minimum Requirements
  Chrome v54

:: Contact & Report issues:
  https://www.igorware.com/contact

------------------------------------------------------

:: Changelog

v5.3.4
 - fixed an error on options save

v5.3.3
- fixed visual issues in extension options for high pixel density screens

v5.3.2
- trying a fix for errors on Mac OS

v5.3.1
- fix: improved error logging

v5.3.0
- ignore certain errors in logger
- added CSP for better security

v5.2.2
- fixed issue where extension would not mark links with image nested more than one level deep

v5.2.0
 - support for UGC and SPONSORED attribute values (there is no way to visually distinguish it from NOFOLLOW value at this time)
 - replaced facebook and twitter share links on options page

v5.1.0
 - improved the way injected script communicates with background script
 - fix: improved error logging

v5.0.0
 - new: added outline for links without nofollow attribute ("DoFollow" links)
 - new: added outline for external links
 - new: added "D" button next to each style input so you can easily restore default style value
 - new: inject content scripts to already opened browser tabs on extension start, this should improve user experience on extension install and update
 - change: updated minimum requirements to Chrome v39
 - change: updated default outline styles (this will be noticed only by new users)
 - change: merged content scripts into one script, should use less resources now
 - change: made sure that extension doesn't try to load itself into pages from web store to avoid "no permission" errors
 - change: improved error logging
 - change: removed Google+ icon and updated Facebook and Twitter icons


===> Full changelog on the website                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NoFollow NoFollow
ID dfogidghaigoomjdeacndafapdijmiid
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nofollow/dfogidghaigoomjdeacndafapdijmiid
คำอธิบาย Outline nofollow links, detect nofollow and noindex meta tags on webpages. Features website filtering and custom CSS outline styles.
ขนาดไฟล์ 60.38 KB
จำนวนการติดตั้ง 142,514
เวอร์ชันปัจจุบัน 5.3.4
อัปเดตครั้งล่าสุด 2021-06-30
วันที่เผยแพร่ 2020-03-27
คะแนน 4.26/5 รวมทั้งหมด 228 คะแนน
ผู้พัฒนา https://igorware.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.igorware.com/extensions/nofollow
URL หน้าช่วยเหลือ https://www.igorware.com/contact
URL หน้านโยบายความเป็นส่วนตัว https://www.igorware.com/extensions/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "54",
    "offline_enabled": true,
    "name": "NoFollow",
    "version": "5.3.4",
    "description": "Outline nofollow links, detect nofollow and noindex meta tags on webpages. Features website filtering and custom CSS outline styles.",
    "homepage_url": "https:\/\/www.igorware.com\/extensions\/nofollow?referrer-ver=chrome-ext-manager",
    "author": "Igor Jerosimi\u0107",
    "background": {
        "scripts": [
            "logger.js",
            "cross.js",
            "storage.js",
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "icons": {
        "16": "images\/icon-016.png",
        "19": "images\/icon-019.png",
        "32": "images\/icon-032.png",
        "38": "images\/icon-038.png",
        "48": "images\/icon-048.png",
        "64": "images\/icon-064.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_title": "NoFollow",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-016.png",
            "19": "images\/icon-019.png",
            "32": "images\/icon-032.png",
            "38": "images\/icon-038.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "includes\/content.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "default-src 'self'; connect-src https:\/\/api.igorware.com; font-src 'none'; img-src 'self' data:; object-src 'none'; style-src 'unsafe-inline'",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}