Tumblr Plus
This extension removes duplicated posts and already viewed post of your tumblr dashboard!
ما هو Tumblr Plus؟
Tumblr Plus هو إضافة Chrome تم تطويرها بواسطة Fran Méndez، والميزة الرئيسية لها هي "This extension removes duplicated posts and already viewed post of your tumblr dashboard!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tumblr Plus
قم بتنزيل ملفات الامتداد Tumblr Plus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |