ACG Videos Detector

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

ACG Videos Detector là gì?

ACG Videos Detector là một tiện ích mở rộng Chrome được phát triển bởi dywebmos, và tính năng chính của nó là "Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ACG Videos Detector

Tải xuống các tệp mở rộng ACG Videos Detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ACG Videos Detector ACG Videos Detector
ID kabdhpcjocieboohkggemdilfjgonhci
URL Chính Thức https://chrome.google.com/webstore/detail/acg-videos-detector/kabdhpcjocieboohkggemdilfjgonhci
Mô tả Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media.
Kích Thước Tệp 461 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 2.0.2
Cập Nhật Lần Cuối 2018-08-12
Ngày Phát Hành 2018-08-12
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển dywebmos
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dyweb/ACG-videos-detector
URL Trang Trợ Giúp https://github.com/dyweb/ACG-videos-detector/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}