Tweetbot Me!

Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)

Tweetbot Me! क्या है?

Tweetbot Me! technofeliz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tweetbot Me! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This simple addon creates a new tweet in Tweetbot formatted by default using this pattern : "«" + title + "»" + url
Tweetbot is a great Mac OSX Twitter client : http://tapbots.com/tweetbot/mac/
I developed this addon for my own use because I was missing this feature since I switched from Firefox to Chrome. I hope it will be usefull for other Firefox and Tweetbot users.

PS1 : This is not a official plugin from Tapbots, don't bother them with support requests ! ;)
PS2 : This addon works on every platform you can install Firefox on but as long as it sends informations to Tweetbot, it will be useless if you don't have Tweetbot installed.                    

एक्सटेंशन की मूल जानकारी

नाम Tweetbot Me! Tweetbot Me!
ID moennemehkpgibjfjncmcnidjddbpjbp
आधिकारिक URL https://chromewebstore.google.com/detail/tweetbot-me/moennemehkpgibjfjncmcnidjddbpjbp
विवरण Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)
फ़ाइल का आकार 32.33 KB
स्थापना संख्या 11
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2017-10-24
प्रकाशन तिथि 2017-10-23
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर technofeliz
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tweetbot Me!",
    "description": "Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)",
    "version": "0.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "images\/appicon128.png",
        "default_title": "Tweetbot Me!"
    },
    "icons": {
        "16": "images\/appicon16.png",
        "48": "images\/appicon48.png",
        "128": "images\/appicon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab"
    ]
}