ACG Videos Detector

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

Qu'est-ce que ACG Videos Detector ?

ACG Videos Detector est une extension Chrome développée par dywebmos, et sa fonction principale est "Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension ACG Videos Detector

Téléchargez les fichiers d'extension ACG Videos Detector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ACG Videos Detector ACG Videos Detector
ID kabdhpcjocieboohkggemdilfjgonhci
URL Officiel https://chrome.google.com/webstore/detail/acg-videos-detector/kabdhpcjocieboohkggemdilfjgonhci
Description Detect particular words in web pages based on the given patterns, mostly used to sniff ACG media.
Taille du Fichier 461 KB
Nombre d'Installations 21
Version Actuelle 2.0.2
Dernière Mise à Jour 2018-08-12
Date de Publication 2018-08-12
Évaluation 3.00/5 Total 2 Évaluations
Développeur dywebmos
Type de Paiement free
Site Web de l'Extension https://github.com/dyweb/ACG-videos-detector
URL de la Page d'Aide https://github.com/dyweb/ACG-videos-detector/issues
Langues Prises en Charge 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"
        }
    }
}