BitLy
Shorten links quick and easy
什么是BitLy?
BitLy是由matzondervan开发的Chrome扩展程序,该扩展的主要功能是“Shorten links quick and easy”。
扩展截图
下载BitLy扩展crx文件
下载BitLy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| 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": [
"*:\/\/*\/*"
]
} | |