Feedly tabs
Open Feedly articles in new tabs
什麼是Feedly tabs?
Feedly tabs是由Peter Leitzen開發的Chrome擴展程式,該擴展的主要功能是“Open Feedly articles in new tabs”。
擴展截圖
下載Feedly tabs擴展crx文件
下載Feedly tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | bbknmbmpegpkeamflgefmekmjjhgddhk |
| 官方網址 | 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"
]
}
} | |