TweetThis
Tweets the current URL
Vad är TweetThis?
TweetThis är en Chrome-tillägg utvecklad av Jarryd Lee, och dess huvudfunktion är "Tweets the current URL".
Tilläggsskärmbilder
Ladda ner TweetThis-förlängningens CRX-fil
Ladda ner TweetThis-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Allows for an easy one click method to tweet your current URL by clicking the tweet this button up the top right of the browser.
Grundläggande Information om Tillägg
Namn | |
ID | dfeipfeeiojbkadlgokhllookmopmdhi |
Officiell webbadress | https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi |
Beskrivning | Tweets the current URL |
Filstorlek | 81.59 KB |
Antal Installationer | 47 |
Aktuell Version | 2.1 |
Senast Uppdaterad | 2014-02-13 |
Publiceringsdatum | 2014-02-13 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Jarryd Lee |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TweetThis", "short_name": "TweetThis", "author": "Jarryd Lee", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "description": "Tweets the current URL", "version": "2.1", "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "icon16.png", "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/api.bit.ly\/*" ] }, "web_accessible_resources": [ "jquery-1.10.1.min.map" ], "manifest_version": 2 } |