Tweet This Page
Browser Extension that tweets the current page URL and title.
Tweet This Page क्या है?
Tweet This Page shuymn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser Extension that tweets the current page URL and title."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tweet This Page एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The browser extension that allows to tweet the current page URL and title. Feature ・Add "Tweet This Page" context menus.
एक्सटेंशन की मूल जानकारी
नाम | Tweet This Page |
ID | ebddcjemiggiaedelggijfknajbchfah |
आधिकारिक URL | https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah |
विवरण | Browser Extension that tweets the current page URL and title. |
फ़ाइल का आकार | 33.58 KB |
स्थापना संख्या | 393 |
वर्तमान संस्करण | 1.1.1 |
अंतिम अपडेट | 2022-04-08 |
प्रकाशन तिथि | 2020-06-01 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | shuymn |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/shuymn/tweet-this-page |
सहायता पृष्ठ URL | https://github.com/shuymn/tweet-this-page/issues |
समर्थित भाषाएँ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1.1", "default_locale": "en", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/intent\/tweet?url=*" ], "js": [ "scripts\/content.js" ] } ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "contextMenus", "webNavigation", "https:\/\/twitter.com\/intent\/tweet?url=*" ] } |