Denote
Displays reblogs with comments on tumblr posts.
什麼是Denote?
Denote是由Sourrust開發的Chrome擴展程式,該擴展的主要功能是“Displays reblogs with comments on tumblr posts.”。
擴展截圖
下載Denote擴展crx文件
下載Denote擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
New in version 0.3.0
- Show the context of the current post response
With tumblr's default view of a chain of reblogs it looks like a giant, unreadable pyramid at a certain point. With this new feature in denote, you can view previous post in a more flat pattern -- from the original down to the current reblog. It makes reading the conversation more tolerable and much easier on newer people not accustomed to tumblr's unique design of a conversation.
New in version 0.2.1:
- Bug fixes
- Fix grouping of responses
- Fix horizontal scrollbar size
New in version 0.2.0:
- New button that opens current blog post in a new tab
- Pulls in reply typed notes
New in version 0.1.0:
- View full reblog posts with denote
- Notes show up as they load in 擴展基本資訊
| 名稱 | |
| ID | ibfbkmghalfjcfeoocejnhhenidpgnbg |
| 官方網址 | https://chromewebstore.google.com/detail/denote/ibfbkmghalfjcfeoocejnhhenidpgnbg |
| 簡介 | Displays reblogs with comments on tumblr posts. |
| 檔案大小 | 216 KB |
| 安裝次數 | 70 |
| 目前版本 | 0.3.0 |
| 更新時間 | 2015-05-08 |
| 上架時間 | 2015-05-08 |
| 評分 | 3.00/5 共 2 次評分 |
| 開發者 | Sourrust |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Denote",
"description": "Displays reblogs with comments on tumblr posts.",
"version": "0.3.0",
"permissions": [
"http:\/\/*.tumblr.com\/post\/*"
],
"browser_action": {
"default_icon": "images\/icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*.tumblr.com\/post\/*"
],
"js": [
"js\/contentscript.js"
],
"run_at": "document_end"
}
]
} | |