Tumblr Plus
This extension removes duplicated posts and already viewed post of your tumblr dashboard!
Co je Tumblr Plus?
Tumblr Plus je rozšíření Chrome vyvinuté Fran Méndez, a jeho hlavní funkcí je „This extension removes duplicated posts and already viewed post of your tumblr dashboard!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Tumblr Plus
Stáhněte si soubory rozšíření Tumblr Plus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | afnnpegeelemflcnchmbpplpnminffkj |
Oficiální URL | https://chrome.google.com/webstore/detail/tumblr-plus/afnnpegeelemflcnchmbpplpnminffkj |
Popis | This extension removes duplicated posts and already viewed post of your tumblr dashboard! |
Velikost souboru | 51.53 KB |
Počet instalací | 278 |
Aktuální Verze | 1.1.2 |
Poslední Aktualizace | 2013-11-27 |
Datum Vydání | 2013-11-27 |
Hodnocení | 3.00/5 Celkem 2 Hodnocení |
Vývojář | Fran Méndez |
Typ Platby | free |
Podporované Jazyky | 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" ] } |