Nautilink - Anchor tag analysis in depth

Nautilink helps you analyzing all anchor tags. It detects both follow and nofollow links and it lets you export the data.

Nautilink - Anchor tag analysis in depthคืออะไร?

Nautilink - Anchor tag analysis in depth เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alessandro Pedrocco Dev และคุณลักษณะหลักของมันคือ "Nautilink helps you analyzing all anchor tags. It detects both follow and nofollow links and it lets you export the data."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Nautilink - Anchor tag analysis in depth

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

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

                        Anchor tag analysis can be quite tiresome. Spotting that lonely nofollow rel attribute in hundreds or even thousands of links is really some time-consuming task that no SEO expert should be bothered by for too long.

Nautilink helps you speed things up a bunch by giving you a complete overview of each webpage's anchor tags. In particular, this overview automatically detects:

✓ Follow and NoFollow rel attributes;
✓ Any other rel attribute value (as in "sponsered", "noopener", "noreferrer" and many more);
✓ Internal and External links.

Once the overview has loaded you can either:

✓ Highlight each single anchor tag in order to make it easy to spot it in the webpage (BEWARE: anchor tags could be listed in the DOM but could not be visibile in the UI. This means that some anchor tags may not be highlighted at all);
✓ Export the data in a handy csv file for further analysis.

Save some of your SEO expert time and just start diving with Nautilink.

If assistance were needed you can contact us at:
Email: [email protected]

We also greatly appreciate any feedback!

Happy analyzing,

The Nautilink contributors.

[AUTHORIZATIONS: This extension needs to access the download folder in order to save the csv file. Nautilink aims to be as transparent as possible and does not store any information.]                    

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

ชื่อ Nautilink - Anchor tag analysis in depth Nautilink - Anchor tag analysis in depth
ID clepihnojkfamebcankfpabifaonpand
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nautilink-anchor-tag-anal/clepihnojkfamebcankfpabifaonpand
คำอธิบาย Nautilink helps you analyzing all anchor tags. It detects both follow and nofollow links and it lets you export the data.
ขนาดไฟล์ 338 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-08-28
วันที่เผยแพร่ 2020-08-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Alessandro Pedrocco Dev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Nautilink - Anchor tag analysis in depth",
    "description": "Nautilink helps you analyzing all anchor tags. It detects both follow and nofollow links and it lets you export the data.",
    "version": "1.0.0",
    "author": "Alessandro Pedrocco",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Nautilink handles your on-page anchor analysis",
        "default_icon": {
            "16": "icon16x16.png",
            "48": "icon48x48.png",
            "128": "icon128x128.png"
        }
    },
    "permissions": [
        "activeTab",
        "downloads"
    ],
    "icons": {
        "16": "icon16x16.png",
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "nautilink.css"
            ]
        }
    ]
}