Feedly tabs
Open Feedly articles in new tabs
Feedly tabs란 무엇입니까?
Feedly tabs은(는) Peter Leitzen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open Feedly articles in new tabs"입니다.
확장 프로그램 스크린샷
Feedly tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
See https://github.com/splattael/chrome-feedly-tabs for source. == Changes Version 0.4.0 * Inject green "TABS" button into feedly.com as an alternative to pageAction Version 0.3.1 * Fix message passing for newer Chrome versions. Version 0.3.0 * Require permission for Feedly's https version. Version 0.2.0 * Use pageAction instead of browserAction. Version 0.1.0 * Feedly changed URL to cloud.feedly.com. Please upgrade! * Added some icons.
확장 프로그램 기본 정보
이름 | Feedly tabs |
ID | bbknmbmpegpkeamflgefmekmjjhgddhk |
공식 URL | https://chromewebstore.google.com/detail/feedly-tabs/bbknmbmpegpkeamflgefmekmjjhgddhk |
설명 | Open Feedly articles in new tabs |
파일 크기 | 57.75 KB |
설치 횟수 | 104 |
현재 버전 | 0.4.0 |
최근 업데이트 | 2017-08-10 |
출시 날짜 | 2017-08-10 |
평점 | 3.75/5 총 4 개의 평점 |
개발자 | Peter Leitzen |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Feedly tabs", "description": "Open Feedly articles in new tabs", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "version": "0.4.0", "permissions": [ "tabs", "http:\/\/*.feedly.com\/home*", "https:\/\/*.feedly.com\/home*" ], "page_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Open Feedly articles in new tabs" }, "content_scripts": [ { "matches": [ "https:\/\/feedly.com\/*" ], "js": [ "js\/inject_action_button.js" ] } ], "background": { "scripts": [ "js\/background.js" ] } } |