MagicNumbers

Find&Preview your magic number with this extension!

Co to jest MagicNumbers?

MagicNumbers to rozszerzenie Chrome opracowane przez underscorestarchaser, a jego główną funkcją jest „Find&Preview your magic number with this extension!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia MagicNumbers

Pobierz pliki rozszerzeń MagicNumbers 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

                        Are you bored? 
CTRL+C and CTRL+V too much time
Now it easy!
You only highlight some magicnumber and right click now you can "warp" to nhentai or you can doubleclick on magicnumber to preview it <3                    

Podstawowe informacje o rozszerzeniu

Nazwa MagicNumbers MagicNumbers
ID eachmpbcaoeffcmbeokmafkgdaffedpi
Oficjalny URL https://chrome.google.com/webstore/detail/magicnumbers/eachmpbcaoeffcmbeokmafkgdaffedpi
Opis Find&Preview your magic number with this extension!
Rozmiar pliku 56.42 KB
Liczba instalacji 162
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-04-02
Data Publikacji 2020-03-31
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper underscorestarchaser
Typ Płatności free
Strona Rozszerzenia http://starchaser.me/magic_numbers
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MagicNumbers",
    "description": "Find&Preview your magic number with this extension!",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icons\/32.png"
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}