Tumblr Plus
This extension removes duplicated posts and already viewed post of your tumblr dashboard!
Tumblr Plusとは何ですか?
Tumblr PlusはFran Méndezによって開発されたChromeの拡張機能で、その主な機能は「This extension removes duplicated posts and already viewed post of your tumblr dashboard!」です。
拡張機能のスクリーンショット
Tumblr Plus拡張機能のCRXファイルをダウンロード
Tumblr Plus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extension for Tumblr repeated post on dashboard. It has the ability to save history as well. Just go to your dasboard and it will appear an icon on your url to change the setting. You can also clear history if you want by pressing the button "Clear history". Hope you enjoy as I did coding it. Peace.
拡張機能の基本情報
名前 | |
ID | afnnpegeelemflcnchmbpplpnminffkj |
公式URL | https://chrome.google.com/webstore/detail/tumblr-plus/afnnpegeelemflcnchmbpplpnminffkj |
説明 | This extension removes duplicated posts and already viewed post of your tumblr dashboard! |
ファイルサイズ | 51.53 KB |
インストール数 | 278 |
現在のバージョン | 1.1.2 |
最終更新日 | 2013-11-27 |
公開日 | 2013-11-27 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | Fran Méndez |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tumblr Plus", "description": "This extension removes duplicated posts and already viewed post of your tumblr dashboard!", "version": "1.1.2", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.tumblr.com\/dashboard" ], "js": [ "jquery.js", "visible.js", "tumblr.js" ], "css": [ "style.css" ] } ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "page_action": { "default_icon": { "19": "images\/19.png", "38": "images\/38.png" }, "default_title": "Tumblr Plus", "default_popup": "popup.html" }, "web_accessible_resources": [ "enlarge.jpg" ], "permissions": [ "storage", "tabs" ] } |