Punkjs

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

Punkjsとは何ですか?

PunkjsはJonathan Creminによって開発されたChromeの拡張機能で、その主な機能は「Punkjs is a Chrome extension that allows you to load local Javascript files into web pages based on the filename.」です。

拡張機能のスクリーンショット

screenshot

Punkjs拡張機能のCRXファイルをダウンロード

Punkjs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Punkjs Punkjs
ID dkjpmglejjkidbgnokkgkiablgbdabpk
公式URL https://chromewebstore.google.com/detail/punkjs/dkjpmglejjkidbgnokkgkiablgbdabpk
説明 Punkjs is a Chrome extension that allows you to load local Javascript files into web pages based on the filename.
ファイルサイズ 10.67 KB
インストール数 45
現在のバージョン 0.1.1
最終更新日 2015-12-06
公開日 2015-12-06
評価 5.00/5 合計 1 レビュー
開発者 Jonathan Cremin
支払い方法 free
拡張機能のウェブサイト https://github.com/kudos/punkjs
ヘルプページのURL https://github.com/kudos/punkjs/issues
対応言語 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"
    }
}