Signature

Signatures for Medium, simplified.

Signatureคืออะไร?

Signature เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cedric Amaya และคุณลักษณะหลักของมันคือ "Signatures for Medium, simplified."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Signature

ดาวน์โหลดไฟล์ส่วนขยาย Signature ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Are you a writer who has your own blog on Medium? Or, maybe an editor of a publication hosted on Medium? In either case, you have probably more than once copy and pasted a signature or sign-off that hardly ever changes into your articles.

With Signature, the days of copy and pasting or manually typing out a signature and styling it again and again are over. Simply type your blog's signature once, style it as you see fit, and save it. Now, whenever you're ready to insert your signature, simply click on the Medium "+" button and select the nib icon - Signature automatically pastes your saved signature for you!

Features include:

 - emoji support just like Medium (use a colon (":") followed by a few characters to bring up some options)
 - native styling (bold, italics, code, quote, etc.)
 - toolbar button and keyboard shortcut ("Alt + Shift + S") to open settings page                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Signature Signature
ID hgabbjfneihcmbbcnbnfdnfdcbpodnhp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/signature/hgabbjfneihcmbbcnbnfdnfdcbpodnhp
คำอธิบาย Signatures for Medium, simplified.
ขนาดไฟล์ 291 KB
จำนวนการติดตั้ง 1,642
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2018-03-22
วันที่เผยแพร่ 2018-03-22
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Cedric Amaya
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cedricium/signature
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Signature",
    "version": "1.0.0",
    "description": "Signatures for Medium, simplified.",
    "icons": {
        "64": "resources\/icons\/favicon-256.png",
        "128": "resources\/icons\/favicon-256.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "resources\/icons\/favicon-256.png",
            "32": "resources\/icons\/favicon-256.png"
        },
        "default_title": "Signature, for Medium"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.medium.com\/*"
            ],
            "js": [
                "content\/vendor\/quill-delta-to-html.js",
                "content\/vendor\/clipboard-polyfill.js",
                "content\/insertSignature.js"
            ],
            "css": [
                "content\/modifiedTooltip.css"
            ]
        }
    ],
    "options_ui": {
        "chrome_style": false,
        "page": "settings\/settings.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "content\/*.svg"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            }
        }
    }
}