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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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:\/\/*\/*" ] } |