YOURLS

Shorten URLs with your own YOURLS instance

什麼是YOURLS?

YOURLS是由https://binfalse.de開發的Chrome擴展程式,該擴展的主要功能是“Shorten URLs with your own YOURLS instance”。

擴展截圖

screenshot
screenshot

下載YOURLS擴展crx文件

下載YOURLS擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Shorten URLs with your own YOURLS instanceYOURLS is free software to create short URLs for websites. It can be installed and run by everyone!

This extension eases the shortening of URLs from Chrome. It integrates into the UI (toolbar button and context menu) and communicates with your own or a public YOURLS instance.

Key features:

    passwordless authentication
    provide a keyword for the short URL
    selected text on the web page to use it as keyword
    automatically copy the resulting short URL to your clipboard


Permissions:

    Access data for all web sites: The extension needs access to the current website to get the URL and potentially selected text (for keyword suggestions), and the extension needs to access any other URL to communicated with private YOURLS instances.
    Input data to the clipboard: The extension is able to copy the shortened URL to clipboard (can be configured in the extension's preferences) 


No ads! No analytics! No tracking!


Read more at my website.                    

擴展基本資訊

名稱 YOURLS YOURLS
ID nddaaiojgkoldnhnmkoldmkeocbooken
官方網址 https://chromewebstore.google.com/detail/yourls/nddaaiojgkoldnhnmkoldmkeocbooken
簡介 Shorten URLs with your own YOURLS instance
檔案大小 40.92 KB
安裝次數 2,333
目前版本 2.2.2
更新時間 2021-03-08
上架時間 2018-05-07
評分 4.67/5 共 21 次評分
開發者 https://binfalse.de
電子郵箱 [email protected]
付費類型 free
擴展官網 http://binfalse.de/software/browser-extensions/yourls-chrome-extension/
說明頁面URL http://binfalse.de/software/browser-extensions/yourls-chrome-extension/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YOURLS",
    "short_name": "YOURLS",
    "version": "2.2.2",
    "author": "Martin Scharm ",
    "description": "Shorten URLs with your own YOURLS instance",
    "icons": {
        "16": "img\/logo16.png",
        "19": "img\/logo19.png",
        "38": "img\/logo38.png",
        "48": "img\/logo48.png",
        "128": "img\/logo128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/logo16.png",
            "19": "img\/logo19.png",
            "38": "img\/logo38.png",
            "48": "img\/logo48.png",
            "128": "img\/logo128.png"
        },
        "default_title": "YOURLS",
        "default_popup": "popup.html"
    }
}