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
Eメール [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"
        }
    ]
}