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によって開発されたChromeの拡張機能で、その主な機能は「Adds an 'Open as...' context menu with configurable actions: search, open on an API, 100% scriptable (via CoffeeScript).」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

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