blob: d2b23cac83d068db6c9cc86c2dd7b91ae8a71957 (
plain)
1
2
3
4
5
6
7
8
9
|
"use strict";
var match = [/https?:\/\/(www\.|beta\.|web\.)?facebook.com\/(.*\/videos\/.*|video.php\?.*)/];
var inject = [
"data/facebook.js"
];
exports.type = "site";
exports.name = "facebook";
exports.match = match;
exports.inject = inject;
|