Fun Crawler
Fun Crawler aimlessly crawls your website by clicking on clinks
Cos'è Fun Crawler?
Fun Crawler è un'estensione di Chrome sviluppata da Brett Sykes, e la sua funzione principale è "Fun Crawler aimlessly crawls your website by clicking on clinks".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Fun Crawler
Scarica i file di estensione Fun Crawler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
An in-Chrome web crawler that aimlessly clicks on links on your website.
Informazioni di Base sull'Estensione
Nome | Fun Crawler |
ID | didijflcofghegahfamjajdememegipg |
URL Ufficiale | https://chromewebstore.google.com/detail/fun-crawler/didijflcofghegahfamjajdememegipg |
Descrizione | Fun Crawler aimlessly crawls your website by clicking on clinks |
Dimensione del File | 14.91 KB |
Conteggio Installazioni | 74 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2016-06-19 |
Data di Pubblicazione | 2016-06-19 |
Valutazione | 2.33/5 Totale 3 Valutazioni |
Sviluppatore | Brett Sykes |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/bretts/fun-crawler |
Lingue Supportate | 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" ] } ] } |