Injecta

Inject JavaScript libraries into your current page.

Qu'est-ce que Injecta ?

Injecta est une extension Chrome développée par Ian Macalinao, et sa fonction principale est "Inject JavaScript libraries into your current page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Injecta

Téléchargez les fichiers d'extension Injecta 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

                        Inject JavaScript libraries into any webpage with the click of a button.

Have you ever wanted to make a request on a page through the Chrome Developer console? Maybe you wanted to scrape a table using jQuery. Maybe you wish you had access to Lodash/Underscore's powerful comprehensions. Maybe you wanted the date processing capabilities of Moment or the functional elegance of Ramda.

With Injecta, you can now do this without having to copy/paste scripts into the console. Injecta allows you to inject pre-defined JavaScript libraries directly into webpages to give you full control of your webpages.

Source: https://github.com/simplyianm/injecta                    

Informations de Base sur l'Extension

Nom Injecta Injecta
ID gbndgddgajcmkogjonkgbcempddcbmca
URL Officiel https://chrome.google.com/webstore/detail/injecta/gbndgddgajcmkogjonkgbcempddcbmca
Description Inject JavaScript libraries into your current page.
Taille du Fichier 91.68 KB
Nombre d'Installations 140
Version Actuelle 0.0.1
Dernière Mise à Jour 2015-10-13
Date de Publication 2015-10-13
Évaluation 5.00/5 Total 4 Évaluations
Développeur Ian Macalinao
Type de Paiement free
Site Web de l'Extension https://ian.pw
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Injecta",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Inject JavaScript libraries into your current page.",
    "homepage_url": "https:\/\/ian.pw",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "38": "assets\/icon38.png"
        },
        "default_title": "Injecta",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}