Punkjs

Punkjs is a Chrome extension that allows you to load local Javascript files into web pages based on the filename.

Was ist Punkjs?

Punkjs ist eine Chrome-Erweiterung, die von Jonathan Cremin entwickelt wurde, und ihr Hauptmerkmal ist "Punkjs is a Chrome extension that allows you to load local Javascript files into web pages based on the filename.".

Erweiterungsscreenshots

screenshot

Punkjs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Punkjs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        It can load them from a directory of your choosing (like ~/.js) into web pages that match the domain, like google.com.js on www.google.com.

> Punk is the phonetic spelling of the Irish word for dot, "ponc". I wanted to call this "Poncjs", but I also didn't want it to be difficult to search for.

It is the spiritual successor to dotjs, which is no longer maintained.

Extensions have security restrictions that stop them reading from the filesystem, so you'll also need to install the Punkjs Bridge App (https://chrome.google.com/webstore/detail/ecnapnimgoienbogbgcmchpgjbgeaobk).

## How to Use

* Install the extension (https://chrome.google.com/webstore/detail/dkjpmglejjkidbgnokkgkiablgbdabpk).
* Install the app (https://chrome.google.com/webstore/detail/ecnapnimgoienbogbgcmchpgjbgeaobk).
* Create your ~/.js directory.
* Launch the app to configure the directory.
* Hack on some js.

## How it Works

The Punkjs extension and Punkjs Bridge app use the Chrome runtime messaging API for communicating.

Whenever you navigate to a webpage the extension will tell the bridge what domain the page is on. The bridge will try to find matching files, starting with the TLD and working down through the levels. The extension then runs the returned Javascript in the context of the page.

## Requirements

* Google Chrome.                    

Grundlegende Informationen zur Erweiterung

Name Punkjs Punkjs
ID dkjpmglejjkidbgnokkgkiablgbdabpk
Offizielle URL https://chromewebstore.google.com/detail/punkjs/dkjpmglejjkidbgnokkgkiablgbdabpk
Beschreibung Punkjs is a Chrome extension that allows you to load local Javascript files into web pages based on the filename.
Dateigröße 10.67 KB
Installationsanzahl 45
Aktuelle Version 0.1.1
Letztes Update 2015-12-06
Veröffentlichungsdatum 2015-12-06
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Jonathan Cremin
Zahlungsart free
Erweiterungswebsite https://github.com/kudos/punkjs
Hilfeseite URL https://github.com/kudos/punkjs/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Punkjs",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Punkjs is a Chrome extension that allows you to load local Javascript files into web pages based on the filename.",
    "author": "Jonathan Cremin ",
    "homepage_url": "https:\/\/github.com\/kudos\/punkjs",
    "minimum_chrome_version": "46",
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bridge-id.js",
                "index.js"
            ]
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}