Simple URL Copy [F]

A tool that helps you to copy url.

Was ist Simple URL Copy [F]?

Simple URL Copy [F] ist eine Chrome-Erweiterung, die von https://ydk.vc entwickelt wurde, und ihr Hauptmerkmal ist "A tool that helps you to copy url.".

Erweiterungsscreenshots

screenshot

Simple URL Copy [F]-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple URL Copy [F]-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        URLをコピーするのに使えるChromeの拡張です。

※ https://chrome.google.com/webstore/detail/simple-url-copy/cefkgjbbpagcilodnhboolbppdjlplip のフォーク(改良版)です

【特徴】
- Simple and Fast
- MarkdownやBacklog、Textileなどのフォーマットに対応しています
- Optionから自分だけのフォーマットを登録することができます
- 不要なフォーマットは削除、もしくは非表示にすることができます
- 登録されたフォーマットは自由に並び替えができます
- 拡張をクリックしたとき、一番上に登録されているフォーマットでコピーされます
- ショートカットは Ctrl+Shift+X または Command+Shift+X で簡単にコピーできます
- Amazonの長いURLを短縮できます(Amazonの不要なパラメーター、クエリーを削除)
- 設定はGoogleアカウントに紐づくので別PCでも同じ内容が利用できます
- コピーできるのは開いてるタブのURLとタイトル、および選択中のテキストです

【使えるテンプレート文字列】
{title}:開いているページのタイトルが挿入されます
{url}:開いているページのURLが挿入されます
{copy}:開いてるページで現在選択中のテキストが挿入されます

【forked from】
- https://github.com/ikedaosushi/simple-url-copy
- https://github.com/MISONLN41/simple-url-copy                    

Grundlegende Informationen zur Erweiterung

Name Simple URL Copy [F] Simple URL Copy [F]
ID kmkdfdfknlkjbmgdenhpeckpdafojnfo
Offizielle URL https://chromewebstore.google.com/detail/simple-url-copy-f/kmkdfdfknlkjbmgdenhpeckpdafojnfo
Beschreibung A tool that helps you to copy url.
Dateigröße 70.18 KB
Installationsanzahl 1,715
Aktuelle Version 2.3.1
Letztes Update 2024-01-10
Veröffentlichungsdatum 2020-05-21
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler https://ydk.vc
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/yudukiak/simple-url-copy
Unterstützte Sprachen ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple URL Copy [F]",
    "description": "A tool that helps you to copy url.",
    "author": "@ikedaosushi, Misoni, and yudukiak(micelle)",
    "version": "2.3.1",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/16.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icons\/16.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "resources\/background.js"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Opens popup.html"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "resources\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage"
    ],
    "content_security_policy": {
        "default-src": "self"
    },
    "devtools_page": "popup.html"
}