Cut it - URL Shortener
Shorten your URL's from anywhere.
什麼是Cut it - URL Shortener?
Cut it - URL Shortener是由https://cut.it.nf開發的Chrome擴展程式,該擴展的主要功能是“Shorten your URL's from anywhere.”。
擴展截圖
下載Cut it - URL Shortener擴展crx文件
下載Cut it - URL Shortener擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Create short links from any page and share them with the world. In this extension you can shorten any link by 2 options 1. The user can click on the icon of this extension in your "Addons" above 2. The user can shorten the link from Context Menu (Right Click Menu), just go over a link,video,image etc, click on the right click button and click "Shorten URL with Cut.it" wait a second and the Short URL will be copied automatically
擴展基本資訊
名稱 | Cut it - URL Shortener |
ID | oobhmofbjccdinehjdhconeombgnfhkj |
官方網址 | https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj |
簡介 | Shorten your URL's from anywhere. |
檔案大小 | 63.59 KB |
安裝次數 | 62 |
目前版本 | 1.4 |
更新時間 | 2022-06-01 |
上架時間 | 2022-02-16 |
開發者 | https://cut.it.nf |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://cut.it.nf |
說明頁面URL | https://cut.it.nf/contact |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Cut it - URL Shortener", "description": "Shorten your URL's from anywhere.", "version": "1.4", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_icon": "icon.png", "default_popup": "views\/popup.html" }, "background": { "service_worker": "background.js" }, "permissions": [ "contextMenus" ], "host_permissions": [ "*:\/\/*\/*" ], "options_page": "views\/options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ] } |