Not my department

Adds an 'Open as...' context menu with configurable actions: search, open on an API, 100% scriptable (via CoffeeScript).

Not my department क्या है?

Not my department jannis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds an 'Open as...' context menu with configurable actions: search, open on an API, 100% scriptable (via CoffeeScript)."।

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

screenshot
screenshot

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

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

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

                        I found myself in a situation where I was browsing the JSON responses of an API I was working on, and I just wanted to right click some of the ids to open them in a new tab. Some of these were facebook IDs, which I wanted to open on facebook's graph API, and some were internal IDs I wanted to look up on our own internal APIs.

With this extension you can write your own resolvers in CoffeeScript, for example to grab an id from a webpage, look it up on your own api and finally opening a page in the browser. Or you could create search shortcuts for your favorite search engines. The context menu gets updated with your resolvers instantly.

Or you can do anything else as long as it's possible in CoffeeScript ;)                    

एक्सटेंशन की मूल जानकारी

नाम Not my department Not my department
ID hninjfoaibenebjfihbkpemekkdafcje
आधिकारिक URL https://chromewebstore.google.com/detail/not-my-department/hninjfoaibenebjfihbkpemekkdafcje
विवरण Adds an 'Open as...' context menu with configurable actions: search, open on an API, 100% scriptable (via CoffeeScript).
फ़ाइल का आकार 1.44 MB
स्थापना संख्या 310
वर्तमान संस्करण 0.7
अंतिम अपडेट 2013-05-13
प्रकाशन तिथि 2013-05-13
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर jannis
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://github.com/jayniz/open-as#readme
सहायता पृष्ठ URL http://github.com/jayniz/open-as#readme
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Not my department",
    "description": "Adds an 'Open as...' context menu with configurable actions: search, open on an API, 100% scriptable (via CoffeeScript).",
    "version": "0.7",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "64": "icon\/64.png",
        "128": "icon\/128.png",
        "256": "icon\/256.png",
        "512": "icon\/512.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "notifications"
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "background": {
        "page": "bridge.html"
    },
    "browser_action": {
        "default_icon": "icon\/32.png",
        "default_popup": "config.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}