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은(는) dywebmos에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ACG Videos Detector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}