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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        }
    ]
}