Cut it - URL Shortener

Shorten your URL's from anywhere.

Cut it - URL Shortenerคืออะไร?

Cut it - URL Shortener เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cut.it.nf และคุณลักษณะหลักของมันคือ "Shorten your URL's from anywhere."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cut it - URL Shortener

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}