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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}