We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c1192 commit 7ed059dCopy full SHA for 7ed059d
2 files changed
contentscript.js
@@ -44,6 +44,8 @@ function test_py_import(line) {
44
var py_pattern3 = /import/;
45
var py_pattern4 = /process.load(.*)/;
46
47
+ line = line.trim();
48
+
49
var config;
50
if (py_pattern1.test(line)) {
51
config = line.replace(/from\s/,"");
manifest.json
@@ -1,15 +1,14 @@
1
{
2
"name": "Github linkify for CMSSW",
3
"description": "Makes browsing CMSSW files waaaay easier.",
4
- "version": "0.3.1",
+ "version": "0.3.2",
5
"content_scripts": [
6
7
"matches": [
8
"https://www.github.com/*/cmssw/*",
9
"https://github.com/*/cmssw/*"
10
],
11
"js": ["contentscript.js"],
12
- // "js": ["contentscript.js", "jquery-2.1.1.min.js"]
13
"run_at": "document_end" // pay attention to this line
14
}
15
0 commit comments