Shorty
URL Shortener
Shortyとは何ですか?
Shortyはhttps://r3bl.comによって開発されたChromeの拡張機能で、その主な機能は「URL Shortener」です。
拡張機能のスクリーンショット
Shorty拡張機能のCRXファイルをダウンロード
Shorty拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it. 拡張機能の基本情報
| 名前 | |
| ID | cbgcnhimnlnjejdopldfdicfingmaijg |
| 公式URL | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
| 説明 | URL Shortener |
| ファイルサイズ | 120 KB |
| インストール数 | 50 |
| 現在のバージョン | 2.1 |
| 最終更新日 | 2023-03-11 |
| 公開日 | 2020-05-31 |
| 評価 | 5.00/5 合計 5 レビュー |
| 開発者 | https://r3bl.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://r3bl.com |
| ヘルプページのURL | https://github.com/r3bl-org/shorty/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Shorty",
"description": "URL Shortener",
"version": "2.1",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_title": "Click to shorten URL",
"default_popup": "index.html",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "MacCtrl+Shift+P"
},
"description": "Shortens URL in address bar"
}
},
"permissions": [
"clipboardWrite",
"activeTab"
],
"host_permissions": [
"*:\/\/*.tinyurl.com\/*"
]
} | |