Website IP
Simple script which places the IP of the current website in the bottom right.
Website IP란 무엇입니까?
Website IP은(는) Benjamin Santalucia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple script which places the IP of the current website in the bottom right."입니다.
확장 프로그램 스크린샷
Website IP 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This simple extension allow you to see the IP address of the website you are currently looking at. Fork of https://github.com/tinybigideas/WebsiteIP FEATURES ======== Simple solution to always show the current websites IP address instead of clicking through an extension. Allow to copy the IP to the clipboard. No load of JQuery so it does not stop the debugger when "Pause on all exeption" is active Moves left or right on mouse over, it won't get in your way IPv6 support No external server to return IP - your chrome does all the work locally Clean, attractive and does the job. PRIVACY ======= No-one sees the IP but you. There is no reliance on an external server to return the IP. Chrome returns the IP address itself on the users side. This takes into consideration local DNS and Host changes. FORK ME: ======== https://github.com/ben8p/WebsiteIP
확장 프로그램 기본 정보
이름 | Website IP |
ID | agbkjcoclkflcpkognkhjkllhimlpice |
공식 URL | https://chromewebstore.google.com/detail/website-ip/agbkjcoclkflcpkognkhjkllhimlpice |
설명 | Simple script which places the IP of the current website in the bottom right. |
파일 크기 | 28.39 KB |
설치 횟수 | 1,286 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2016-04-25 |
출시 날짜 | 2016-04-25 |
평점 | 3.50/5 총 8 개의 평점 |
개발자 | Benjamin Santalucia |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ben8p/WebsiteIP |
도움말 페이지 URL | https://github.com/ben8p/WebsiteIP/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "description": "__MSG_description__", "version": "1.1.0", "author": "Benjamin Santalucia", "minimum_chrome_version": "18", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_locale": "en", "permissions": [ "tabs", "webRequest", "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "images\/icon48.png", "default_popup": "popup.html" }, "homepage_url": "https:\/\/github.com\/ben8p\/WebsiteIP", "content_scripts": [ { "all_frames": false, "run_at": "document_end", "js": [ "ip.js" ], "css": [ "css\/ip.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |