BitLy
Shorten links quick and easy
BitLy là gì?
BitLy là một tiện ích mở rộng Chrome được phát triển bởi matzondervan, và tính năng chính của nó là "Shorten links quick and easy".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng BitLy
Tải xuống các tệp mở rộng BitLy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | BitLy |
ID | odilpbnahibaonlfnciocdfdlilfigco |
URL Chính Thức | https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco |
Mô tả | Shorten links quick and easy |
Kích Thước Tệp | 13.11 KB |
Số Lần Cài Đặt | 9,501 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2023-07-14 |
Ngày Phát Hành | 2017-04-16 |
Đánh Giá | 4.38/5 Tổng số 16 Đánh Giá |
Nhà Phát Triển | matzondervan |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Matthijz98/Url-shortener-chome-extension |
URL Trang Trợ Giúp | https://github.com/Matthijz98/Url-shortener-chome-extension |
Ngôn Ngữ Được Hỗ Trợ | 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": [ "*:\/\/*\/*" ] } |