ACGate

Automatically detect and convert certain "Pixiv ID" and other text patterns into hyperlinks.

ACGateคืออะไร?

ACGate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lukeshining และคุณลักษณะหลักของมันคือ "Automatically detect and convert certain "Pixiv ID" and other text patterns into hyperlinks."

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

screenshot
screenshot

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

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

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

                        This extension automatically detects and converts certain string patterns to corresponding hyperlinks. Now supports: Pixiv, BaiduNetDisk, Bilibili, and Megnet Links.

For example: Pixiv ID = 19260817 -> https://www.pixiv.net/member_illust.php?mode=medium&illust_id=19260817

GitHub: https://github.com/LShining/ACGate.git

这个插件可以闷声地转换PixivID=19260817等字样的文本为对应形式的超链接。目前支持的有:Pixiv、百度网盘、B站av号、磁力链接。默认磁力链接采用bith协议计算Hash值。
如果有任何意见或建议请发送电子邮件至 [email protected] 或者新浪微博:@北蛤

V0.14 新增功能:
自动充填带密码的百度网盘链接
为百度网盘提供自定义提取密码功能

很惭愧,就做了一点微小的工作。谢谢大家。                    

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

ชื่อ ACGate ACGate
ID nohoknmhncklgflbcchhkbdinghkachk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/acgate/nohoknmhncklgflbcchhkbdinghkachk
คำอธิบาย Automatically detect and convert certain "Pixiv ID" and other text patterns into hyperlinks.
ขนาดไฟล์ 55.08 KB
จำนวนการติดตั้ง 673
เวอร์ชันปัจจุบัน 0.141
อัปเดตครั้งล่าสุด 2017-06-16
วันที่เผยแพร่ 2017-06-16
คะแนน 3.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา lukeshining
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/LShining/ACGate.git
ภาษาที่รองรับ en-US,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "short_name": "ACGate",
    "version": "0.141",
    "description": "__MSG_description__",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "shared\/ba-debug.js",
                "shared\/jquery-3.2.1.min.js",
                "jquery.ba-replacetext.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en_US",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "ACGate",
        "default_popup": "options\/options.html"
    },
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "script.js"
    ]
}