Cut it - URL Shortener
Shorten your URL's from anywhere.
Cut it - URL Shortener란 무엇입니까?
Cut it - URL Shortener은(는) https://cut.it.nf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shorten your URL's from anywhere."입니다.
확장 프로그램 스크린샷
Cut it - URL Shortener 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Create short links from any page and share them with the world. In this extension you can shorten any link by 2 options 1. The user can click on the icon of this extension in your "Addons" above 2. The user can shorten the link from Context Menu (Right Click Menu), just go over a link,video,image etc, click on the right click button and click "Shorten URL with Cut.it" wait a second and the Short URL will be copied automatically
확장 프로그램 기본 정보
이름 | Cut it - URL Shortener |
ID | oobhmofbjccdinehjdhconeombgnfhkj |
공식 URL | https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj |
설명 | Shorten your URL's from anywhere. |
파일 크기 | 63.59 KB |
설치 횟수 | 62 |
현재 버전 | 1.4 |
최근 업데이트 | 2022-06-01 |
출시 날짜 | 2022-02-16 |
개발자 | https://cut.it.nf |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://cut.it.nf |
도움말 페이지 URL | https://cut.it.nf/contact |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Cut it - URL Shortener", "description": "Shorten your URL's from anywhere.", "version": "1.4", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_icon": "icon.png", "default_popup": "views\/popup.html" }, "background": { "service_worker": "background.js" }, "permissions": [ "contextMenus" ], "host_permissions": [ "*:\/\/*\/*" ], "options_page": "views\/options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ] } |