BitLy
Shorten links quick and easy
BitLy란 무엇입니까?
BitLy은(는) matzondervan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shorten links quick and easy"입니다.
확장 프로그램 스크린샷
BitLy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Updated to use bitly api V4 And the api key is now synced by your google account * Make right-click on the link to shorten contents of a "href" attribute * Make right-click on the selected text to treat it as link and shorten it * To shorten current tab's URL click extension's button located on the right from address bar Short URL will be automatically copied to the clipboard. Code can be found on Github: https://github.com/Matthijz98/Url-shortener-chome-extension
확장 프로그램 기본 정보
이름 | BitLy |
ID | odilpbnahibaonlfnciocdfdlilfigco |
공식 URL | https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco |
설명 | Shorten links quick and easy |
파일 크기 | 13.11 KB |
설치 횟수 | 9,501 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2023-07-14 |
출시 날짜 | 2017-04-16 |
평점 | 4.38/5 총 16 개의 평점 |
개발자 | matzondervan |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Matthijz98/Url-shortener-chome-extension |
도움말 페이지 URL | https://github.com/Matthijz98/Url-shortener-chome-extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BitLy", "version": "0.1.0", "description": "Shorten links quick and easy", "background": { "service_worker": "background.js" }, "options_page": "options.html", "icons": { "16": "icons\/bitly_16.png", "32": "icons\/bitly_32.png", "48": "icons\/bitly_32.png", "128": "icons\/bitly_32.png" }, "permissions": [ "tabs", "contextMenus", "storage", "scripting" ], "action": { "default_icon": "icons\/bitly_16.png", "default_popup": "popup.html", "default_title": "Shorten links quick and easy" }, "host_permissions": [ "*:\/\/*\/*" ] } |