Rick Roll Detector

Warns you about Rick Roll links - never get Rick Rolled again.

Co to jest Rick Roll Detector?

Rick Roll Detector to rozszerzenie Chrome opracowane przez mgriffiths, a jego główną funkcją jest „Warns you about Rick Roll links - never get Rick Rolled again.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Rick Roll Detector

Pobierz pliki rozszerzeń Rick Roll Detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Never get Rick Rolled again.

This extension pops a mini Rick Astley next to all links which could Rick Roll you, and warns when you click on one.                    

Podstawowe informacje o rozszerzeniu

Nazwa Rick Roll Detector Rick Roll Detector
ID naiegljfmojjaphollbjobpedcdnkkfp
Oficjalny URL https://chromewebstore.google.com/detail/rick-roll-detector/naiegljfmojjaphollbjobpedcdnkkfp
Opis Warns you about Rick Roll links - never get Rick Rolled again.
Rozmiar pliku 185 KB
Liczba instalacji 6,311
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2016-06-30
Data Publikacji 2016-06-30
Ocena 4.16/5 Łącznie 45 Oceny
Deweloper mgriffiths
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rick Roll Detector",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Warns you about Rick Roll links - never get Rick Rolled again.",
    "homepage_url": "http:\/\/mike-griffiths.co.uk",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/rickastley.png"
    ]
}