ACG Videos Detector

Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media.

ACG Videos Detectorคืออะไร?

ACG Videos Detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dywebmos และคุณลักษณะหลักของมันคือ "Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media."

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

screenshot
screenshot

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

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

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

                        Go to video page based on the specific video ID

- Select the video ID and right click to open the video page in your browser.
- Detect video IDs in a webpage and transform them to hyperlinks.
- Click the extension's icon to see all video IDs in a webpage.                    

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

ชื่อ ACG Videos Detector ACG Videos Detector
ID kabdhpcjocieboohkggemdilfjgonhci
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/acg-videos-detector/kabdhpcjocieboohkggemdilfjgonhci
คำอธิบาย Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media.
ขนาดไฟล์ 461 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 2.0.2
อัปเดตครั้งล่าสุด 2018-08-12
วันที่เผยแพร่ 2018-08-12
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา dywebmos
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dyweb/ACG-videos-detector
URL หน้าช่วยเหลือ https://github.com/dyweb/ACG-videos-detector/issues
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ACG Videos Detector",
    "version": "2.0.2",
    "description": "Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media.",
    "author": "clouduan",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icons\/icon16.png",
            "48": "images\/icons\/icon48.png",
            "128": "images\/icons\/icon128.png"
        },
        "default_title": "ACG Videos Detector"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-3.3.1.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        ""
    ],
    "commands": {
        "onKeyDownCheck": {
            "suggested_key": {
                "default": "Ctrl+Shift+5",
                "mac": "Command+Shift+5"
            },
            "description": "Show sidebar"
        },
        "onKeyDownReplace": {
            "suggested_key": {
                "default": "Ctrl+Shift+6",
                "mac": "Command+Shift+6"
            },
            "description": "Show hyperlinks"
        }
    }
}