Content Script

Simple extension that allows running pre-defined JavaScript at any page. Developed by Simo Erkinheimo.

Wat is Content Script?

Content Script is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Simple extension that allows running pre-defined JavaScript at any page. Developed by Simo Erkinheimo.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Content Script

Download Content Script-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Content Script Content Script
ID fncbcbakeiaopklkfknhpckcoipoaefo
Officiële URL https://chromewebstore.google.com/detail/content-script/fncbcbakeiaopklkfknhpckcoipoaefo
Beschrijving Simple extension that allows running pre-defined JavaScript at any page. Developed by Simo Erkinheimo.
Bestandsgrootte 22.97 KB
Aantal Installaties 173
Huidige Versie 0.0.1
Laatst Bijgewerkt 2016-07-19
Publicatiedatum 2016-07-19
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Content Script",
    "version": "0.0.1",
    "icons": {
        "128": "icon128.png"
    },
    "description": "Simple extension that allows running pre-defined JavaScript at any page. Developed by Simo Erkinheimo.",
    "author": "Simo Erkinheimo",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "manifest_version": 2
}