URL Shortener - TinyURL Extension
Shorten URLs with ease.
URL Shortener - TinyURL Extension란 무엇입니까?
URL Shortener - TinyURL Extension은(는) dev.bergda에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shorten URLs with ease."입니다.
확장 프로그램 스크린샷
URL Shortener - TinyURL Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The only URL Shortener Extension that doesn't open a popup. Clicking the Extension Icon is all you need to do to shorten and copy the current URL, with no extra clutter do distract you from your browsing. The same functionality is added to Chrome's Context menu for links, right-clicking a link gives you the option to shorten and copy the clicked link with just one click. An 'OK' or 'ERR' badge is displayed on the Extension Icon to notify the user about a successful shortening and that the shortened URL is now copied to the user's clipboard, or to notify the user of an error. This extension uses TinyURL's URL Shortener Service to shorten the URLs. This extension does not store user data at any point. The current URL (or the URL from the clicked link) is the only thing that gets sent to the TinyURL API. The original URL or the shortened URL is not stored by this extension.
확장 프로그램 기본 정보
이름 | URL Shortener - TinyURL Extension |
ID | mnnjjchefohcoocleiepmdpfhdpgoflk |
공식 URL | https://chromewebstore.google.com/detail/url-shortener-tinyurl-ext/mnnjjchefohcoocleiepmdpfhdpgoflk |
설명 | Shorten URLs with ease. |
파일 크기 | 8.04 KB |
설치 횟수 | 60 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2023-08-05 |
출시 날짜 | 2023-08-05 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | dev.bergda |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "URL Shortener - TinyURL Extension", "version": "1.0.0", "description": "Shorten URLs with ease.", "action": { "default_title": "Shorten Url and Copy to Clipboard" }, "icons": { "48": "icons\/icon48.png", "96": "icons\/icon96.png" }, "background": { "service_worker": "service-worker.js" }, "permissions": [ "activeTab", "scripting", "contextMenus", "clipboardWrite" ], "content_security_policy": { "extension_pages": "default-src 'self'; connect-src 'self' https:\/\/tinyurl.com;" } } |