Bookmark Tweet to Browser
Bookmark tweet to browser bookmark directly from timeline using embedded button.
Bookmark Tweet to Browser क्या है?
Bookmark Tweet to Browser redhoyasa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark tweet to browser bookmark directly from timeline using embedded button."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bookmark Tweet to Browser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Twitter has bookmark feature, but we cannot organize the bookmarked tweets. Alternatively, we could bookmark tweet to the browser bookmark directly and organize it, but we need to open the individual tweet into new tab before bookmarking the tweet. This extension provides shortcut to bookmark tweet directly from timeline using embedded button in tweet. Feature: - Add tweet to browser bookmark (will be added to Other Bookmarks folder in Chrome) - Remove bookmarked tweet from browser bookmark
एक्सटेंशन की मूल जानकारी
नाम | |
ID | fcohgfilngajddgokkckbpfkpmojoejf |
आधिकारिक URL | https://chromewebstore.google.com/detail/bookmark-tweet-to-browser/fcohgfilngajddgokkckbpfkpmojoejf |
विवरण | Bookmark tweet to browser bookmark directly from timeline using embedded button. |
फ़ाइल का आकार | 42.12 KB |
स्थापना संख्या | 75 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2019-10-31 |
प्रकाशन तिथि | 2019-10-31 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | redhoyasa |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmark Tweet to Browser", "version": "0.1.0", "short_name": "Bookmark Tweet to Browser", "description": "Bookmark tweet to browser bookmark directly from timeline using embedded button.", "permissions": [ "activeTab", "declarativeContent", "storage", "bookmarks" ], "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*.twitter.com\/*" ], "css": [ "dist\/css\/styles.css" ], "js": [ "dist\/content.js" ] } ], "icons": { "16": "app\/images\/icon16.png", "48": "app\/images\/icon48.png", "128": "app\/images\/icon128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |