Burro
A Chrome Extension for Reddit
什麼是Burro?
Burro是由Jesse Patching開發的Chrome擴展程式,該擴展的主要功能是“A Chrome Extension for Reddit”。
擴展截圖
下載Burro擴展crx文件
下載Burro擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Features:
* Mark all links on the current page as read by clicking a button/tab in the header
* Mark all links on the current page as read by clicking "next" at the bottom of the page
* Mark individual links as read
* More relaxed visual style
* Fixed header, so it follows as you scroll the page
* View all images as thumbnails, and mouseover for the full sized image
- Optionally, hide all NSFW thumbnails
- Currently supports direct links to images as well as:
- imgur.com / i.imgur.com
- gfycat.com
- i.redd.it / i.reddituploads.com
- youtube.com / youtu.be
- vimeo.com
Usage:
* Install the Burro extension
* On the Burro Options page, click the features you want to enable
Source available at: https://github.com/taeram/burro 擴展基本資訊
| 名稱 | |
| ID | bcimcgagkdildnhcmjhljonhionglmcb |
| 官方網址 | https://chrome.google.com/webstore/detail/burro/bcimcgagkdildnhcmjhljonhionglmcb |
| 簡介 | A Chrome Extension for Reddit |
| 檔案大小 | 223 KB |
| 安裝次數 | 18 |
| 目前版本 | 1.4.7 |
| 更新時間 | 2016-11-03 |
| 上架時間 | 2016-11-03 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | Jesse Patching |
| 付費類型 | free |
| 擴展官網 | https://github.com/taeram/burro |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Burro",
"version": "1.4.7",
"manifest_version": 2,
"description": "A Chrome Extension for Reddit",
"homepage_url": "https:\/\/github.com\/taeram\/burro",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": true
},
"options_page": "src\/options_custom\/index.html",
"permissions": [
"history",
"http:\/\/reddit.com\/*",
"https:\/\/reddit.com\/*",
"http:\/\/*.reddit.com\/*",
"https:\/\/*.reddit.com\/*",
"https:\/\/www.youtube.com\/oembed*"
],
"content_scripts": [
{
"matches": [
"http:\/\/reddit.com\/*",
"https:\/\/reddit.com\/*",
"http:\/\/*.reddit.com\/*",
"https:\/\/*.reddit.com\/*"
],
"css": [
"src\/inject\/inject.css"
],
"js": [
"js\/jquery\/jquery.min.js",
"src\/inject\/inject.js"
]
}
],
"web_accessible_resources": [
"js\/jquery\/jquery.min.map"
]
} | |