URL Shortener

Free and easy URL shortener to create short links in one click!

URL Shortener là gì?

URL Shortener là một tiện ích mở rộng Chrome được phát triển bởi https://www.rebrandly.com, và tính năng chính của nó là "Free and easy URL shortener to create short links in one click!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng URL Shortener

Tải xuống các tệp mở rộng URL Shortener dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Create short links easily with our convenient and user-friendly URL shortener! With the Rebrandly Chrome extension, you can shorten URLs just seconds, all for free. The process is simple, as you can shorten URLs directly from the page you’re on. If you want to create custom branded links, sign up for a paid plan. 

The Rebrandly Chrome extension can be fully integrated with your Rebrandly account or can be used for free without any registration.

- Feature Highlights: 
- Forever FREE (No sign-up or login required)
- Shorten any link in one click
- Generate QR codes
- Manage UTM parameters
- Track link clicks
- Customize short URLs with your domain name
- Customize short URLs with keywords
- Share directly to social media platforms

Visit Rebrandly.com for more details about our URL shortener.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên URL Shortener URL Shortener
ID eaidebojanpehpceonghnmgdofblnlae
URL Chính Thức https://chromewebstore.google.com/detail/url-shortener/eaidebojanpehpceonghnmgdofblnlae
Mô tả Free and easy URL shortener to create short links in one click!
Kích Thước Tệp 1.8 MB
Số Lần Cài Đặt 90,771
Phiên Bản Hiện Tại 4.5.5
Cập Nhật Lần Cuối 2024-02-13
Ngày Phát Hành 2019-10-22
Đánh Giá 4.39/5 Tổng số 183 Đánh Giá
Nhà Phát Triển https://www.rebrandly.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://rebrandly.com
URL Trang Trợ Giúp https://rebrand.ly/support
URL Trang Chính Sách Bảo Mật https://www.rebrandly.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Rebrandly",
    "name": "URL Shortener",
    "version": "4.5.5",
    "manifest_version": 2,
    "description": "Free and easy URL shortener to create short links in one click!",
    "icons": {
        "512": "favicon.png"
    },
    "background": {
        "scripts": [
            "js\/helpers\/api-middleware.js",
            "js\/dashboard\/context_menu.js",
            "js\/entry_dashboard_extension.js",
            "js\/libs\/jquery-3.2.1.min.js",
            "js\/menus\/options.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "https:\/\/*\/.google.com\/*",
        "https:\/\/www.gstatic.com\/*",
        "*:\/\/*\/*",
        "identity",
        "activeTab",
        "tabs",
        "storage",
        "clipboardWrite",
        "clipboardRead",
        "contextMenus",
        "storage",
        "bookmarks",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+R",
                "windows": "Alt+R",
                "mac": "MacCtrl+R",
                "chromeos": "Alt+R",
                "linux": "Alt+R"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/utils\/constants.js",
                "js\/utils\/defaults.js",
                "js\/libs\/validator.min.js",
                "js\/libs\/le.min.js",
                "js\/libs\/tldjs.js",
                "js\/libs\/jquery-3.2.1.min.js",
                "js\/utils\/logger.js",
                "js\/menus\/utils-eld-popup.js",
                "js\/helpers\/api-middleware.js",
                "js\/ald\/elements.js",
                "js\/ald\/linkEngine.js",
                "js\/ald\/core.js",
                "js\/entry_automatic_link_detection.js",
                "js\/features\/automatic_replace.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "all_frames": true,
            "exclude_matches": [
                "https:\/\/*.rebrandly.com\/*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "js\/utils\/external_listener.js"
            ],
            "matches": [
                "*:\/\/localhost\/*",
                "https:\/\/*.rebrandly.com\/*"
            ]
        },
        {
            "js": [
                "js\/oauth\/oauth.js"
            ],
            "matches": [
                "https:\/\/oauth.rebrandly.com\/robots.txt*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "js\/utils\/constants.js",
        "js\/libs\/tldjs.js",
        "html\/rb-popup-short-menu.html",
        "html\/rb-rebranded.html",
        "html\/rb-not-working.html",
        "html\/rb-popover.html",
        "css\/select.min.css",
        "js\/libs\/le.min.js",
        "css\/emoji\/anguished.png",
        "css\/emoji.css",
        "js\/utils\/iframe-spinner.js",
        "html\/iframe-spinner.html",
        "html\/spinner-error.html",
        "fonts\/*"
    ],
    "options_page": "html\/options.html",
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost\/*"
        ]
    },
    "incognito": "not_allowed",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.statuspage.io https:\/\/www.google.com https:\/\/www.gstatic.com https:\/\/www.google-analytics.com; object-src 'self'",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhLblXDbddpJMifIS9yZelrJcZECWyXOe21MbOeoQpfuwwnCv0\/NOkgFKO7wjp7MxQdgxKQCQ3s89jw8qufgnSAi2+LKVO4QQpuZhFfaYqyIb7OTkl6+3ft20ejxPJvo5rSjgk1M5DxQJWBBvzq9Tch8eQwqI+\/FBmo9WDB+9BWgrIgtlY72aixMd+5O1jMcy58fgtVh8qR0igJPIFSk4LmKQ443ZRGbZRcW\/WTzT3wmEnH89sMCP7r+LAlbIOinq6PstH5LQirobG1+NIZ4wM3r86p\/jAjEr4ZqvUcFaglCwSmlilN0KuRxNGao1fNPDgdq5cmSGpUMIbX1nQLPj4wIDAQAB"
}