Scriptable

Configurable page scripts

Wat is Scriptable?

Scriptable is een Chrome-extensie ontwikkeld door RaoQu, en de belangrijkste functie is "Configurable page scripts".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Scriptable

Download Scriptable-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

                        v1.3 Cross origin ajax request enabled.
v1.5 Execute script on page load or clicking extension icon
v2.0 Add crawl API, @see https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md                    

Basisinformatie over de Extensie

Naam Scriptable Scriptable
ID hbheihpcmapeadnhhpglmpjknfjdjncc
Officiële URL https://chrome.google.com/webstore/detail/scriptable/hbheihpcmapeadnhhpglmpjknfjdjncc
Beschrijving Configurable page scripts
Bestandsgrootte 148 KB
Aantal Installaties 22
Huidige Versie 2.1.5
Laatst Bijgewerkt 2017-05-12
Publicatiedatum 2017-05-12
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar RaoQu
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/raoqu/scriptable
Help Pagina-URL https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scriptable",
    "description": "Configurable page scripts",
    "version": "2.1.5",
    "background": {
        "scripts": [
            "common_base.js",
            "common_callback.js",
            "background_lib_extension.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "common_base.js",
                "common_callback.js",
                "common_extension.js",
                "content_lib_url.js",
                "content_lib_html.js",
                "content_lib_net.js",
                "content_lib_download.js",
                "content_util_crawler.js",
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_name": "Scriptable",
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "downloads",
        "storage",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https:\/\/maps.googleapis.com; img-src https:\/\/maps.google.com"
}