Twa.si URL-shortener
Official Twa.si URL-shortener extension.
什麼是Twa.si URL-shortener?
Twa.si URL-shortener是由https://twa.si開發的Chrome擴展程式,該擴展的主要功能是“Official Twa.si URL-shortener extension.”。
擴展截圖
下載Twa.si URL-shortener擴展crx文件
下載Twa.si URL-shortener擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Your shortlink is just one click away!
Shorten URLs using the twa.si URL-shortener.
Open any web-page and click the shortener icon or rightclick any link.
It will create and copy your twa.si url.
It's even faster than copying the page URL manually!
Our URL-shortener is fast, easy to use and completely free.
You don't need an account to use it.
We are proud to be a part of the open source community. You can find this and other projects on our GitHub page at https://twa.si/r/github. 擴展基本資訊
| 名稱 | |
| ID | lngjokdnklohagplfpcpjjmmkcehiabm |
| 官方網址 | https://chromewebstore.google.com/detail/twasi-url-shortener/lngjokdnklohagplfpcpjjmmkcehiabm |
| 簡介 | Official Twa.si URL-shortener extension. |
| 檔案大小 | 193 KB |
| 安裝次數 | 38 |
| 目前版本 | 1.4 |
| 更新時間 | 2020-09-24 |
| 上架時間 | 2020-09-07 |
| 評分 | 5.00/5 共 8 次評分 |
| 開發者 | https://twa.si |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/twasi/twasi-shortener-chrome-extension |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twa.si URL-shortener",
"version": "1.4",
"manifest_version": 2,
"description": "Official Twa.si URL-shortener extension.",
"author": "Twasi-Team",
"homepage_url": "https:\/\/github.com\/twasi\/twasi-shortener-chrome-extension",
"offline_enabled": false,
"permissions": [
"activeTab",
"tabs",
"https:\/\/twa.si\/*",
"contextMenus",
"clipboardWrite",
"notifications"
],
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"64": "icons\/64.png",
"128": "icons\/128.png"
},
"browser_action": {
"default_title": "Shorten this URL with twa.si",
"default_popup": "ui\/html\/popup.html",
"default_icon": "icons\/64.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/twa.si\/*"
],
"js": [
"dist\/hide-ribbon.js"
]
}
],
"background": {
"page": "ui\/html\/background.html"
}
} | |