Fun Crawler

Fun Crawler aimlessly crawls your website by clicking on clinks

Fun Crawlerとは何ですか?

Fun CrawlerはBrett Sykesによって開発されたChromeの拡張機能で、その主な機能は「Fun Crawler aimlessly crawls your website by clicking on clinks」です。

拡張機能のスクリーンショット

screenshot

Fun Crawler拡張機能のCRXファイルをダウンロード

Fun Crawler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Fun Crawler Fun Crawler
ID didijflcofghegahfamjajdememegipg
公式URL https://chromewebstore.google.com/detail/fun-crawler/didijflcofghegahfamjajdememegipg
説明 Fun Crawler aimlessly crawls your website by clicking on clinks
ファイルサイズ 14.91 KB
インストール数 74
現在のバージョン 0.0.5
最終更新日 2016-06-19
公開日 2016-06-19
評価 2.33/5 合計 3 レビュー
開発者 Brett Sykes
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/bretts/fun-crawler
対応言語 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"
            ]
        }
    ]
}