Kickstarter Tracker
Allow you to keep track of projects and be notified when they get more funding.
Kickstarter Tracker क्या है?
Kickstarter Tracker Murilo Mielke द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow you to keep track of projects and be notified when they get more funding."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Kickstarter Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allows you to keep track of kickstarter projects progression. You can track as many projects as you want! - Simple yet concise list containing number of backers, days left, goal and funded amount so far for each project. - Colored progression bar to easily see which ones are getting there. - Data is updated every 5 minutes. - Icon 'badge' (little number on the extension icon) that let you know how many of your tracked projects got more funding. - When opening the extension popup when the icon badge is active, the list will show how much more funding the project got since the last time you opened it. TO-DO: - Option to define the update interval. - Option to only show the badge if a minimum value was reached. - Option to show actual chrome notifications. - Option to play a little sound, maybe?
एक्सटेंशन की मूल जानकारी
नाम | Kickstarter Tracker |
ID | hjcopmdpofagfbhmhmkfcaegkedapdfb |
आधिकारिक URL | https://chromewebstore.google.com/detail/kickstarter-tracker/hjcopmdpofagfbhmhmkfcaegkedapdfb |
विवरण | Allow you to keep track of projects and be notified when they get more funding. |
फ़ाइल का आकार | 593 KB |
स्थापना संख्या | 361 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2017-05-19 |
प्रकाशन तिथि | 2017-05-18 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Murilo Mielke |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Kickstarter Tracker", "description": "Allow you to keep track of projects and be notified when they get more funding.", "version": "0.1", "permissions": [ "http:\/\/*.kickstarter.com\/*", "https:\/\/*.kickstarter.com\/*", "storage", "tabs" ], "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "images\/*" ], "content_security_policy": "script-src 'self' https:\/\/example.com; object-src 'self'" } |