Fun Crawler

Fun Crawler aimlessly crawls your website by clicking on clinks

Co to jest Fun Crawler?

Fun Crawler to rozszerzenie Chrome opracowane przez Brett Sykes, a jego główną funkcją jest „Fun Crawler aimlessly crawls your website by clicking on clinks”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Fun Crawler

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

                        An in-Chrome web crawler that aimlessly clicks on links on your website.                    

Podstawowe informacje o rozszerzeniu

Nazwa Fun Crawler Fun Crawler
ID didijflcofghegahfamjajdememegipg
Oficjalny URL https://chromewebstore.google.com/detail/fun-crawler/didijflcofghegahfamjajdememegipg
Opis Fun Crawler aimlessly crawls your website by clicking on clinks
Rozmiar pliku 14.91 KB
Liczba instalacji 74
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2016-06-19
Data Publikacji 2016-06-19
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper Brett Sykes
E-mail brettcsykes@gmail.com
Typ Płatności free
Strona Rozszerzenia https://github.com/bretts/fun-crawler
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fun Crawler",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Fun Crawler aimlessly crawls your website by clicking on clinks",
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/19x19.png",
            "38": "icons\/38x38.png"
        },
        "default_title": "Fun Crawler",
        "default_popup": "browseraction\/popup.html"
    },
    "background": {
        "scripts": [
            "funCrawler.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}