Detect Nofollow
Highlight rel no-follow and sponsored links on web pages. Useful for SEO
什麼是Detect Nofollow?
Detect Nofollow是由Ewa Kubiak開發的Chrome擴展程式,該擴展的主要功能是“Highlight rel no-follow and sponsored links on web pages. Useful for SEO”。
擴展截圖
下載Detect Nofollow擴展crx文件
下載Detect Nofollow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Detect Nofollow finds no-follow or sponsored links and highlights them. Only external links are highlighted. Features: - Highlights no-follow links (see screenshot) - Enable/disable from the popup - Customize appearance - Blacklist certain domains Please note that the extension doesn’t highlight links to the same domain.
擴展基本資訊
名稱 | |
ID | ndihoialkhpohdgajomcmdpnjpikebcg |
官方網址 | https://chrome.google.com/webstore/detail/detect-nofollow/ndihoialkhpohdgajomcmdpnjpikebcg |
簡介 | Highlight rel no-follow and sponsored links on web pages. Useful for SEO |
檔案大小 | 123 KB |
安裝次數 | 100,000 |
目前版本 | 0.18.0 |
更新時間 | 2021-03-23 |
上架時間 | 2021-03-11 |
評分 | 4.33/5 共 3 次評分 |
開發者 | Ewa Kubiak |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://www.notion.so/Privacy-policy-Detect-Nofollow-cb675af5a62c4652805ca2e5b9eab016 |
支援的語言 | id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "offline_enabled": true, "name": "__MSG_name__", "version": "0.18.0", "description": "__MSG_description__", "background": { "scripts": [ "background.js" ], "persistent": true }, "default_locale": "en", "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true }, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "300": "images\/icon-300.png" }, "browser_action": { "default_title": "NoFollow", "default_popup": "popup.html", "default_icon": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "300": "images\/icon-300.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "content.js" ], "all_frames": true } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/*.googleapis.com https:\/\/www.googletagmanager.com; object-src 'self'", "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |