Fun Crawler
Fun Crawler aimlessly crawls your website by clicking on clinks
ما هو Fun Crawler؟
Fun Crawler هو إضافة Chrome تم تطويرها بواسطة Brett Sykes، والميزة الرئيسية لها هي "Fun Crawler aimlessly crawls your website by clicking on clinks".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Fun Crawler
قم بتنزيل ملفات الامتداد Fun Crawler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An in-Chrome web crawler that aimlessly clicks on links on your website.
معلومات أساسية عن التمديد
الاسم | 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 |
البريد الإلكتروني | [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" ] } ] } |