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)."입니다.
확장 프로그램 스크린샷
Not my department 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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'" } |