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.”。

扩展截图

screenshot
screenshot
screenshot

下载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 Cut it - URL Shortener
ID oobhmofbjccdinehjdhconeombgnfhkj
官方URL 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"
        }
    ]
}