has_many collections
See which collections a product hunt post has been added to
has_many collections란 무엇입니까?
has_many collections은(는) oelmekki에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See which collections a product hunt post has been added to"입니다.
확장 프로그램 스크린샷
has_many collections 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension for Product Hunt users allows them to see, for any product, in which collections it has been added. This is useful for makers, to see in which collections their product is referred, but also for all other users that may that way discover related products to the one they are currently looking at. This is a new way to browse Product Hunt and explore its massive database.
확장 프로그램 기본 정보
이름 | |
ID | acofjkhaidlhpdfmcooapmeoebfenggg |
공식 URL | https://chrome.google.com/webstore/detail/hasmany-collections/acofjkhaidlhpdfmcooapmeoebfenggg |
설명 | See which collections a product hunt post has been added to |
파일 크기 | 509 KB |
설치 횟수 | 16 |
현재 버전 | 1.4 |
최근 업데이트 | 2015-08-21 |
출시 날짜 | 2015-08-21 |
개발자 | oelmekki |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "has_many collections", "version": "1.4", "manifest_version": 2, "description": "See which collections a product hunt post has been added to", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "tabs", "https:\/\/www.producthunt.com\/", "http:\/\/www.producthunt.com\/" ], "background": { "persistent": false, "scripts": [ "background_page\/background.js", "background_page\/background\/api.js", "background_page\/background\/page_action_decider.js", "background_page\/main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/hunting-cabin.cc\/has_many_collections\/authorized*", "http:\/\/localhost:3000\/has_many_collections\/authorized*" ], "js": [ "content_script\/jquery.js", "content_script\/url.js", "content_script\/main.js" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "38": "icon.png" }, "default_popup": "page_action\/main.html" } } |