AlphaSense Web Clipper
Easily save articles to AlphaSense
AlphaSense Web Clipper란 무엇입니까?
AlphaSense Web Clipper은(는) https://alpha-sense.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily save articles to AlphaSense"입니다.
확장 프로그램 스크린샷
AlphaSense Web Clipper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
AlphaSense Web Clipper The intelligent way to search web clippings. AlphaSense is the “Google” for company research and utilizes the power of machine learning and natural language processing to allow users to search across a universe of curated content. Clip any web page using this Google Chrome extension, store them to be searched alongside other content in AlphaSense. Highlight, annotate and share content, as desired, with colleagues. Web Clipper helps increase workflow efficiency by organizing relevant content within AlphaSense, eliminating the need to parse through numerous bookmarks to locate an article or website of interest, and helps provide context and a more comprehensive story for research when combined with existing AlphaSense content. Access to AlphaSense requires a subscription. Visit www.alpha-sense.com for more information.
확장 프로그램 기본 정보
이름 | AlphaSense Web Clipper |
ID | odjjihghjdapmcfjhnkkkikiibladmkj |
공식 URL | https://chromewebstore.google.com/detail/alphasense-web-clipper/odjjihghjdapmcfjhnkkkikiibladmkj |
설명 | Easily save articles to AlphaSense |
파일 크기 | 259 KB |
설치 횟수 | 892 |
현재 버전 | 2.5.4 |
최근 업데이트 | 2023-05-22 |
출시 날짜 | 2020-02-05 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | https://alpha-sense.com |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.alpha-sense.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'", "author": "AlphaSense", "name": "AlphaSense Web Clipper", "description": "Easily save articles to AlphaSense", "version": "2.5.4", "minimum_chrome_version": "50.0.0", "background": { "page": "html\/background.html", "persistent": true }, "browser_action": { "default_icon": { "16": "img\/logo\/ua_as_logo_16.png", "24": "img\/logo\/ua_as_logo_24.png", "32": "img\/logo\/ua_as_logo_32.png" }, "default_title": "Sign in to Web Clipper" }, "icons": { "16": "img\/logo\/as_logo_16.png", "48": "img\/logo\/as_logo_48.png", "128": "img\/logo\/as_logo_128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "activeTab", "contextMenus", "webRequest", "webRequestBlocking", "cookies" ], "commands": { "ASoptions": { "suggested_key": { "default": "Alt+Shift+C" }, "description": "Show Options" } }, "web_accessible_resources": [ "html\/loading.html", "html\/mainDailog.html", "img\/dnd.png" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/clipperFrame.css" ], "js": [ "js\/lib\/jquery-3.1.1.min.js", "js\/pageConverter.js", "js\/framehandler.js", "js\/content.js" ], "run_at": "document_end" } ] } |