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 |
| 官方網址 | 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": [
"*:\/\/*\/*"
]
} | |