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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Punkjs is a Chrome extension that allows you to load local Javascript files into web pages based on the filename."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Punkjs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}