Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
40 lines (39 sloc) 1003 Bytes
{
"name": "Product Hunt Twitter",
"version": "0.2",
"author": "Rahul Kapoor",
"manifest_version": 2,
"description": "Get Product Hunt stats right on your Twitter timeline.",
"permissions": [
"http://www.twitter.com/*", "https://www.twitter.com/*","https://api.producthunt.com/*","notifications","storage","activeTab"
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"browser_action": {
"default_icon": {
"19": "logo16.png",
"38": "logo48.png"
}
},
"icons": {
"128": "logo128.png",
"16": "logo16.png",
"48": "logo48.png"
},
"homepage_url": "https://github.com/rahulkapoor90/This-is-Clickbait",
"content_scripts": [
{
"matches": ["https://twitter.com/*"],
"css": ["PHstyle.css"],
"js" : [ "jquery.min.js","twitter.js"],
"run_at" : "document_idle",
"all_frames" : false
}
]
}