Script Executor
Used to run script on page to get results
Qu'est-ce que Script Executor ?
Script Executor est une extension Chrome développée par ashu.sushant, et sa fonction principale est "Used to run script on page to get results".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Script Executor
Téléchargez les fichiers d'extension Script Executor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
The extension helps run java script on the page. The good point is that the extension is powered by jQuery version 1.10 which helps in debugging any html page you have currently opened up in the browser. For using Jquery use $ext instead of $ to run your scripts. For example if I want to find number of anchor tags on the page: I would write $ext('a').size() in the text area to get the number in result section below the execute button. Similarly try using window.location.href to get the current url in result section. You can write multiple lines of script and execute to see the logs in console as do not use alerts in the script. To see logs in the console. Press F12 to open the chrome developer tool and then click on the console tab. Logging in Script Area example: try writing console.log('Your message') and click Execute button or alternative you can use the log method directly like log('My Message'). Try executing this script on any page. $ext('a').each(function(){ log($ext(this).text()) }); This will result in printing every link text on the page in console. Use It and play around with the html in your browser. Happy Scripting !!!!
Informations de Base sur l'Extension
Nom | Script Executor |
ID | hlledchhaimjmakjdmjpldfanefbhikj |
URL Officiel | https://chromewebstore.google.com/detail/script-executor/hlledchhaimjmakjdmjpldfanefbhikj |
Description | Used to run script on page to get results |
Taille du Fichier | 283 KB |
Nombre d'Installations | 13,059 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2014-07-13 |
Date de Publication | 2014-07-13 |
Évaluation | 2.97/5 Total 36 Évaluations |
Développeur | ashu.sushant |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Script Executor", "version": "3.0", "description": "Used to run script on page to get results", "icons": { "128": "images\/script_128.png" }, "background": { "persistent": false, "scripts": [ "js\/server\/jquery-1.10.2.js", "js\/server\/server.js" ] }, "permissions": [ "activeTab" ], "browser_action": { "default_title": "Script Executor", "default_icon": "images\/script_20.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/client\/jquery-1.10.2.js", "js\/client\/content.js" ] } ] } |